| 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 |
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.
- 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.
- Id: Identifier of the created process. The
Idargument is of type Process Identifier.