I have a task that actor should select the actors of the next task from the user list.

hello,
I have a process that in one task an actor chooses the next task actors. how can perform this process by UI Designer or 6X?
thanks.

Hi,

You can achieve that using the actor filter. You can implement your own logic to build the list of candidate for a task. So in your case, you can have a process variable that stores the user choice for the next task candidate and then an actor filter that use this process variable to build the list of candidates.

Here is the documentation about actor filter: http://documentation.bonitasoft.com/?page=creating-an-actor-filter

Cheers

Thanks lionel
How can I fetch list of users and store them in a process variable, then show them as a checkbox list in my form that user can select from them??

Thanks lionel
How can I fetch list of users and store them in a process variable, then show them as a checkbox list in my form that user can select from them??

You can use the identity REST API to fetch a list of users from the form and you can just return the user id on task submission and store it in a process variable.

thank you so much.