Feedback from actions
All actions in the Actions and Conditions Editor can provide feedback on the success of the action. A "Success" and an "Error" branch can be displayed for each action by right-clicking on it.
Explanations:
- The "Success" branch is called if the action was executed without errors. For JavaScript code containing a context object, the context object must return "Success".
- The "Error" branch is called if an exception occurs during execution of the action. For JavaScript code that contains a context object, the "Error" branch is called if an exception or an "Error" message of the context object occurs.
- With an asynchronous logic, the function "Wait for completion" waits for the action to be executed. With a synchronous logic, this function has no effect.