You are here:
Action Types
List of action types of an action element and their purpose.
| S.No. | Action Type | Purpose |
|---|---|---|
| 1. | LOAD | Loads data into a given instance of a business or list object. |
| 2. | SAVE | Saves a given instance or list of a declared object within the process. |
| 3. | CREATE | Creates an instance of a given business object. The Action returns a reference to the created business object instance stored in the Process or Application Context. |
| 4. | VIEW | Renders a given UI. The VIEW action also declares event handling for the defined user interface and ExitHandlers used for validations. |
| 5. | LOGIC | Calls a given business logic function from the API or a method defined within the process. |
| 6. | PROCESS | Starts a new process (subprocess) from the current process. The actionType Process can return one or more values. The name of the return value is a reference to a variable in the process context. |
| 7. | NAVIGATION | Used for transitions in the execution flow. The attribute “defaultLabel” is required for this action. |
| 8. | DECISION | Evaluates and takes action based on the input parameter. |
| 9. | CONFIRM | Enables the user to decide if the pending changes are kept or discarded. |
| 10. | VALIDATION | Validates a business object by using a validation business logic function. |
| 11. | MASTER_DETAIL_HANDLER | Manages the correlation between a MasterList (List Object) and a DetailObject (Business Object). |
| 12. | END | Exits the current process. |
| 13. | SCAN | Captures a scan event. |
| 14. | PRINTV2 | Captures a print event. |

