COMPLETEACTION Workflow Application
Overview
The COMPLETEACTION workflow application lets you complete an ongoing action with the corresponding parameters. It provides a simple solution for inter-process communications and synchronization.
Parameters
Request
Parameter | Type | Direction | Description |
| Numeric | IN | Request ID of the action to be completed |
Action
Parameter | Type | Direction | Description |
| Text | IN | Name of the action to be completed (the first instance found will be completed) |
| Numeric | IN | Action instance ID of the action to be completed |
| Text | IN | Username of the user who will be associated with completing the action |
Optional parameters
The optional parameters are the parameters of the action to be completed. You will have to define these parameters in the corresponding action parameters.
Example
If you want to complete an asynchronous web procedure action called MYASYNCACTION
, which has the following parameter:
AMOUNT
: receive data intoTOTAL
(you have to create this process data)
Then, in your process, you have to add an action using the COMPLETEACTION application with the following parameters:
Parameter | Type | Direction | Description |
| Numeric | IN | Send value of |
| Text | IN | Send value of the name of the action to complete (e.g. |
| Numeric | IN | Send value of |
Note: You should add exception handling on COMPLETEACTION type actions in case of error (for example, an invalid request number or an invalid action number, etc.).
Last updated