Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Multiple roles performing a single task

Tags:

bpmn

How can I model a task that is performed by multiple roles?

Example 1: 3 roles have to meet in order to discuss an issue
Example 2: 3 roles collaborate in order to create a concept

-

like image 424
Natalia Avatar asked Mar 03 '17 08:03

Natalia


2 Answers

Your problem is thoroughly addressed in this excellent BPMN blog:

enter image description here

Activities cannot be placed common neither between pools nor lanes, and this is a common mistake. While this blog proposes possible solution I don't treat it as optimal and recommend you to check this answer on almost similar question as yours.

In my opinion you have to choose from these two options:

  1. Either place your common activity inside separate collaborative lane which will be semantically equal to all your three roles.

enter image description here

As it fairly stated in the above answer, lane semantics is not strictly described in BPMN standard, so we can freely address any entities through it.

  1. Or place your collaborative activity into separate pool. It's what BPMN collaboration diagrams are designated for.

enter image description here

You should choose the proper variant based on the semantics of your process.

like image 144
Suncatcher Avatar answered Nov 11 '22 06:11

Suncatcher


How can I model a task that is performed by multiple roles?

Example 1: 3 roles have to meet in order to discuss an issue Example 2: 3 roles collaborate in order to create a concept

Any activity can have only one performer. It is (your question) mean, that 3 roles (performers) do the same activity at the same time and produce "something". enter image description here

like image 40
Jarek Zelinski Avatar answered Nov 11 '22 07:11

Jarek Zelinski