The flow begins, and the "create record" step generates a new record. Following this, the execution concludes with the "end" step. Should an error occur during the record creation process, the error will be logged, and the execution will terminate.
The flow initiates, and the "delete data" step removes data from an entity. Subsequently, the execution concludes with the "end" step. If any errors arise during the data deletion process, they will be logged, and the execution will be terminated.
The flow initiates, and the "delete record" step deletes a specific record. Subsequently, the execution concludes with the "end" step. If any errors occur during the record deletion process, they will be logged, and the execution will be terminated.
The flow begins, and the "execute action on data" step executes actions on the identified records. Subsequently, the execution concludes with the "end" step. If an error occurs during the action execution, the error will be logged, and the execution will be terminated.
The flow initiates, and the "execute action on record" step performs actions on a record. Subsequently, the execution concludes with the "end" step. In the event of an error during the action execution, the error will be logged, and the execution will terminate.
The flow begins, and the "execute global action" step executes an action at the entity level. Subsequently, the execution concludes with the "end" step. If an error occurs during the action execution, the error will be logged, and the execution will be terminated.
The flow initiates, and the "find data" step conducts a search for data using a query. Following this, the retrieved data is logged, and the execution concludes with the "end" step.
The flow begins, and the "find record" step searches for a specific record using a query. Subsequently, the located record is logged, and the execution concludes with the "end" step.
The flow begins, and the "find record by id" step searches for a specific record by its unique identifier. Following this, the identified record is logged, and the execution is finalized with the "end" step.
Acquires a lock for a specified record. This method is recommended when multiple threads attempt to access the same record, especially in scenarios involving concurrent execution of listeners or actions.
The flow initiates, and the "lock" step obtains a lock for a specified record to prevent any listener or action from altering the record while we perform subsequent actions. Following this, the "update record" step modifies the record's data, and these changes are saved using the "save record" step. Subsequently, a success message is logged with the "logger" step, and the execution concludes with the "end" step. In the event that the lock cannot be acquired, an error message will be logged using the "logger" step.
The flow begins, and the "update record" step modifies the data of a record. Subsequently, the changes are saved by the "save record" step, and the execution concludes with the "end" step. If an error occurs, it will be logged, and the execution will be terminated.
The flow begins, and the "find record by id" step searches for a specific record by its unique identifier. Following this, the identified record is logged, and the execution is finalized with the "end" step.