How to assign the catalog task assignment group to different assignment groups.

dhineshkumar
Tera Guru

I have the catalog item form, There user select multiple groups(check boxes) based on the groups I need to creates the catalog task assignment groups. How to achieve this task using workflow.

3 ACCEPTED SOLUTIONS

Ankur Bawiskar
Tera Patron
Tera Patron

Hi,

you can use advanced script in Catalog Task Activity

if(current.variables.group1Checkbox == true)
	task.assignment_group = 'group1SysId';
else if(current.variables.group2Checkbox == true)
	task.assignment_group = 'group12ysId';

Regards
Ankur

Regards,
Ankur
Certified Technical Architect  ||  9x ServiceNow MVP  ||  ServiceNow Community Leader

View solution in original post

Hi,

For your further question you can use onChange client script on that cost variable and then append the $ to it

Regards
Ankur

Regards,
Ankur
Certified Technical Architect  ||  9x ServiceNow MVP  ||  ServiceNow Community Leader

View solution in original post

@dhineshkumar 

Hope you are doing good.

Did my reply answer your question?

If my response helped please close the thread by marking appropriate response as correct so that it benefits future readers.

Regards,
Ankur
Certified Technical Architect  ||  9x ServiceNow MVP  ||  ServiceNow Community Leader

View solution in original post

8 REPLIES 8

can you please provide more details how do I append the $ and I want with fullstops(.) and commas(,) with ending (00) as well. Please please help me on this Ankur.

Hi,

Please share what client script did you start?

I already suggested to use onChange client script.

regards
Ankur

Regards,
Ankur
Certified Technical Architect  ||  9x ServiceNow MVP  ||  ServiceNow Community Leader

@dhineshkumar 

Hope you are doing good.

Did my reply answer your question?

If my response helped please close the thread by marking appropriate response as correct so that it benefits future readers.

Regards,
Ankur
Certified Technical Architect  ||  9x ServiceNow MVP  ||  ServiceNow Community Leader

Can you please provide me the answer sir.