Parallel processes
Applies to: CELONIS 4.0 CELONIS 4.2 CELONIS 4.3 CELONIS 4.4 CELONIS 4.5 CELONIS 4.6
Description
Cases in Celonis can be configured to have subprocesses by adding additional information to the Activity table.
Master process
For adding parallel processes to Celonis, a parent and a child column in the Activity table are used. If all values for parent and child are NULL, only the master process (non parallel process) is added to the data model.
Example
[1] In this example, all values for parent-ID and child-ID are NULL, therefore only the master process (non parallel process) is added to the data model.The overall process looks like this. In PQL, the edges of that graph can be calculated using SOURCE - TARGET.
|
Child-ID
A new subprocess is started by adding new child-IDs. The child-ID of a sub-process has to be unique among one case. Sub-processes with the same child-ID are modelled as a sequential subprocess. They are implicitly joined, as soon as activity of the master process (child-ID and parent-ID are both NULL) starts.
Example
[2] In this example, a new subprocess is started by adding new child-IDs. The master process splits up into two parallel processes after activity A, which are merged together again at activity E. The overall process looks like this: In PQL, the edges of that graph can be calculated using SOURCE - TARGET
|
Parent-Child Relation
You can define parent/child relations between subprocesses. This allows you to model a subprocess which spawns further subprocesses. As soon as the parent subprocess reads another activity, it implicitly joins all spawned subprocesses. The child-ID of a spawned subprocess has to be higher than the child-ID of its parent subprocess.
Examples
[3] In this example, parent/child relations between subprocesses are defined. The subprocess with child ID-2 is split up again after activity C into two parallel subprocesses containing the activities D and E, respectively. Both have unique child-IDs, but are linked to their parent subprocess with child-ID 2 by specifying this ID in the parent column. The overall process looks like this: In PQL, the edges of that graph can be calculated using SOURCE - TARGET.
|
[4] In this example, the master process splits up into two subprocesses (child-IDs 1 and 5). The subprocess with child-ID 1 splits up again after activity B into two subprocesses with child-IDs 3 (activity D) and 2 (activities C and E). The overall process looks like this: In PQL, the edges of that graph can be calculated using SOURCE - TARGET.
|