Skip to main content

Embedded Subprocess

An embedded subprocess allows to group elements of the workflow.

embedded-subprocess

An embedded subprocess must have exactly one none start event. Other start events are not allowed.

When an embedded subprocess is entered then the start event gets activated. The subprocess stays active as long as one containing element is active. When the last element is completed then the subprocess gets completed and the outgoing sequence flow is taken.

Embedded subprocesses are often used together with boundary events. One or more boundary events can be attached to an subprocess. When an interrupting boundary event is triggered then the whole subprocess including all active elements gets terminated.

Variable Mappings​

Input mappings can be used to create new local variables in the scope of the subprocess. These variables are only visible within the subprocess.

By default, the local variables of the subprocess are not propagated (i.e. they are removed with the scope). This behavior can be customized by defining output mappings at the subprocess. The output mappings are applied on completing the subprocess.

Additional Resources​

XML representation

An embedded subprocess with a start event:

<bpmn:subProcess id="process-order" name="Process Order">
<bpmn:startEvent id="order-placed" />
... more contained elements ...
</bpmn:subProcess>

Using the BPMN modeler

Adding an embedded subprocess:

event-based-gateway

Workflow Lifecycle

Workflow instance records of an embedded subprocess:

IntentElement IdElement Type
ELEMENT_ACTIVATINGprocess-orderSUB_PROCESS
ELEMENT_ACTIVATEDprocess-orderSUB_PROCESS
ELEMENT_ACTIVATINGorder-placedSTART_EVENT
.........
ELEMENT_COMPLETEDitems-fetchedEND_EVENT
ELEMENT_COMPLETINGprocess-orderSUB_PROCESS
ELEMENT_COMPLETEDprocess-orderSUB_PROCESS

References: