Skip to main content
Version: 8.4

Call activities

A call activity (or reusable subprocess) allows you to call and invoke another process as part of this process. It's similar to an embedded subprocess, but the process is externalized (i.e. stored as separated BPMN) and can be invoked by different processes.

call-activity

When a call activity is entered, a new process instance of the referenced process is created. The new process instance is activated at the none start event. The process can have start events of other types, but they are ignored.

When the created process instance is completed, the call activity is left and the outgoing sequence flow is taken.

Defining the called process

A call activity must define the BPMN process id of the called process as processId.

The new instance of the defined process is created by its latest version at the point when the call activity is activated.

Usually, the processId is defined as a static value (e.g. shipping-process), but it can also be defined as expression (e.g. = "shipping-" + tenantId). The expression is evaluated on activating the call activity and must result in a string.

Boundary events

call-activity-boundary-event

Interrupting and non-interrupting boundary events can be attached to a call activity.

When an interrupting boundary event is triggered, the call activity and the created process instance are terminated. The variables of the created process instance are not propagated to the call activity.

When a non-interrupting boundary event is triggered, the created process instance is not affected. The activities at the outgoing path have no access to the variables of the created process instance since they are bound to the other process instance.

Variable mappings

By default, all variables of the call activity scope are copied to the created process instance. This can be limited to copying only the local variables of the call activity, by setting the attribute propagateAllParentVariables to false.

By disabling this attribute, variables existing at higher scopes are no longer copied. If the attribute propagateAllParentVariables is set (default: true), all variables are propagated to the child process instance.

Input mappings can be used to create new local variables in the scope of the call activity. These variables are also copied to the created process instance.

If the attribute propagateAllChildVariables is set (default: true), all variables of the created process instance are propagated to the call activity. This behavior can be customized by defining output mappings at the call activity. The output mappings are applied on completing the call activity and only those variables that are defined in the output mappings are propagated.

It's recommended to disable the attribute propagateAllChildVariables or define output mappings if the call activity is in a parallel flow (e.g. when it is marked as parallel multi-instance). Otherwise, variables can be accidentally overridden when they are changed in the parallel flow.

By default, all variables of the call activity scope are copied to the created process instance. This can be limited to copying only the local variables of the call activity, by setting the attribute propagateAllParentVariables to false.

By disabling this attribute, variables existing at higher scopes are no longer copied. If the attribute propagateAllParentVariables is set (default: true), all variables are propagated to the child process instance.

Additional resources

XML representation

A call activity with static process id and propagation of all child variables turned on:

<bpmn:callActivity id="Call_Activity" name="Call Process A">
<bpmn:extensionElements>
<zeebe:calledElement processId="child-process-a" propagateAllChildVariables="true" />
</bpmn:extensionElements>
</bpmn:callActivity>

A call activity with copying of all variables to the child process turned off:

<bpmn:callActivity id="Call_Activity" name="Call Process A">
<bpmn:extensionElements>
<zeebe:calledElement processId="child-process-id" propagateAllParentVariables="false" />
<zeebe:ioMapping>
<zeebe:input source="=variableValue" target="variableName" />
</zeebe:ioMapping>
</bpmn:extensionElements>
</bpmn:callActivity>

References