cancel
Showing results for 
Search instead for 
Did you mean: 

Reasign task to another user

jcosano
Champ in-the-making
Champ in-the-making
I have an userTask with a form, user that claims task can re-assign task to another user, and finally complete this task.

BPMN has a cycle to the same userTask seeing if action is reassign. This userTask has defined potencialOwner a specific group.

Then,

How can I force that new Task is claim by user selected by first user?

All 2 users belongs to the same group (defined in userTask).

My best idea is create a TimerEvent associated to userTask, but, I only need to be executed 1 time, for force reasign, but if I repeat every 5 seconds… I'm doing a lot of work for nothing…

I'm working with activiti explorer.
2 REPLIES 2

jcosano
Champ in-the-making
Champ in-the-making
is it possible desactivate a TimerEvent ?

jcosano
Champ in-the-making
Champ in-the-making
Solved!!

I put two userTask,

first with activiti:candidateGroups="userGroup"
second with activiti:assignee="${userSelected}"

and second has an outgoing to itself, then one user can reassign task.