Question
2
Replies
2035
Views
Cognizant
Posted: March 22, 2018
Last activity: April 23, 2018
Closed
Solved
Assigning Work Item to multiple users
Hi All,
I have a requirement of assigning multiple work items (from workbasket) to multiple users (to Work lists).Is that possible?
Do we have any OOTB activities for assigning to multiple operators?
need your help to know and grow better..
Thanks
Nadeem.
Hi Nadeem,
I do not see any OOTB activities having such functional behavior. Bulk actions has functionality to transfer set of assignments to single operator/another workbasket but not to multiple operators. But you can recreate something similar to "GetNextWork" functionality. Although this a pull based mechanism for the operators. You can follow the below approach for push based-
1. Loop over the assignments from the workbaskets of the workpool (can use FindAssignmentInWorkBasket as reference)
2. Examine which assignment is suitable for which operator in the current work pool.
3. Then you can perform transferAssignment which would internally call reassign activity.
You will have to ensure that the reassign to any operator should happen based on some criteria like skillset of the operator, availability.
Hope this helps.
-Madhuri