Skip to content

Latest commit

 

History

History
34 lines (21 loc) · 1.66 KB

File metadata and controls

34 lines (21 loc) · 1.66 KB
summary locale guid app_type platform-version figma
Learn how to use the Launch Process Action in OutSystems 11 (O11) to execute processes asynchronously and manage input and output parameters.
en-us
b710c30e-e103-430c-8646-2488f414a422
traditional web apps, mobile apps, reactive web apps
o11

Launch Process Action

Use the Launch<Process Name> process extended action in an action flow to launch the execution of a Process. This process is executed asynchronously, that is, it is launched and executed independently from the action flow execution, which immediately steps to the next element in the flow.

Important! When using Launch<Process Name> in an action, the launched process might start before the current transaction has been committed. This means that any changes that were made during the transaction that launched the process might not yet be visible in that process. For example, if you update an entity and then launch a process using Launch<Process Name> by passing that entity's id, that process might not yet see the updated values for that entity, as the transaction updating the entity might not have been committed yet.

Input parameters

  • Process Input Parameters: one parameter for each input parameter in the process definition.

The input parameters must be in the same order and of the same type as what is defined in the process.

Output parameters

  • Id: Identifier of the created process. The Id argument is of type Process Identifier.

See how to access the output parameters.