You are here:
ProcessContext
Declare process variables by using the ProcessContext element.
The table lists the nodes in a ProcessContext element.
| Node or Child Node | Required | Description |
|---|---|---|
| ProcessContext | No | ProcessContext node. |
| ProcessContext.Declarations | No | Declare global process variables used during the process or by the UI for data binding. |
| ProcessContext.Declarations.Declaration | No | Declaration node. |
| ProcessContext.Parameters | No | Parameters node. |
| ProcessContext.Parameters.Input | No | Define the parameters passed to the process. |
Structure of a ProcessContext:
<ProcessContext>
<Declarations>
<Declaration name="MyVariable" type="MyObjectClass" />
</Declarations>
<Parameters>
<Input name="CustomerPKey" type="DomPKey" />
</Parameters>
</ProcessContext>

