cancel
Showing results for 
Search instead for 
Did you mean: 

How to assign common task for multiple users.

sherlock
Champ in-the-making
Champ in-the-making
Hi,

i'm just trying tom implement a workflow where a common task will be generated by an analyst and assigned to multiple users but the task id
will be same for all the assignees.

All the assigned users and analyst should be able to see the changes done on the task.

Is there any way in the activiti to achieve this functionality ?

I'm musing JSF, J2EE, Activiti, PostgresSQL, Jboss 7.1 AS.






Thanks

Sherlock
1 REPLY 1

martin_grofcik
Confirmed Champ
Confirmed Champ
Hi Sherlock,

I think there are many possibilities. I do not understand the whole usecase yet, but…

task assignee is just a string

    ASSIGNEE_ varchar(255),
In this string you can store list of user to which task is assigned. It up to your client implementation how it will interpret this string.
In that case it will be harder to implement task complete method.

Regards
Martin