Join the #BuildWithBuildAgent Challenge! Get recognized, earn exclusive swag, and inspire the ServiceNow Community with what you can build using Build Agent.  Join the Challenge.

Mulyople Assigned To on Workflow Task

John H1
Tera Guru

i have a request to have a Catalog Task (from workflow) to have two Assigned To users. Like Additional Assignee

1 ACCEPTED SOLUTION

Brad Bowman
Kilo Patron
Kilo Patron

You can add this in the activity script

task.additional_assignee_list = 'sys_id';

to hard-code a user, or current.variables. variable_name to assign a user from a sys_user reference variable.  I haven't used this field, but since it is out of box the notifications, etc might work the same as with assigned_to.

View solution in original post

1 REPLY 1

Brad Bowman
Kilo Patron
Kilo Patron

You can add this in the activity script

task.additional_assignee_list = 'sys_id';

to hard-code a user, or current.variables. variable_name to assign a user from a sys_user reference variable.  I haven't used this field, but since it is out of box the notifications, etc might work the same as with assigned_to.