- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-11-2022 09:20 AM
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.
Solved! Go to Solution.
- Labels:
-
Multiple Versions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-11-2022 09:22 AM
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
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-11-2022 10:41 AM
Hi,
For your further question you can use onChange client script on that cost variable and then append the $ to it
Regards
Ankur
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-06-2022 08:45 PM
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.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-11-2022 09:22 AM
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
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-11-2022 10:23 AM
Hi Ankur
Thanks for help. and I have another requirement I have one catalog item form and have the cost field. When user enter any number on the field ir should convert as currency.
Example : id user enter 36547 convert as $36,547.00
How to do with onchange client script, Please provide me exact script, variable name is "cost".
Greately Appreciate.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-11-2022 10:41 AM
Did I answer your original question around task assignment?
Please mark my response as correct and helpful to close the thread.
Regards
Ankur
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-11-2022 10:41 AM
Hi,
For your further question you can use onChange client script on that cost variable and then append the $ to it
Regards
Ankur
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader