cancel
Showing results for 
Search instead for 
Did you mean: 

Assign same user to a set of usertasks

jorell
Champ in-the-making
Champ in-the-making
Is there any way I can specify in the bpmn that a set of user tasks should be assigned the same user. So if I assign the first task to user kermit, the other tasks are automatically assigned to kermit as well?
4 REPLIES 4

kajan
Champ in-the-making
Champ in-the-making
Create a task listener in first task on "complete" event, get the bpm_assignee & assign it to a variable. Then create task listeners in each other tasks on "create" event set that variable back to bpm_assignee.

jorell
Champ in-the-making
Champ in-the-making
I was hoping there was a low cost solution to this from the bpmn itself. Could swim lanes or pool lanes be used for this in some way?

jbarrez
Star Contributor
Star Contributor
No, pools and swimlanes don't have 'memory'. In bpmn, they are merely for documentation.

You could have a 'low-cost' solution by doing something like vkajamugan mentions, but using a ParseHandler (although it will be applied always in that case …)

jorell
Champ in-the-making
Champ in-the-making
Understood, thanks.