- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-24-2025 06:51 AM
Based on support group choices, want to populate in assignment_group in catalog item in sp
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-06-2025 12:41 AM
I have achieved this functionality by using the Catalog Data Lookups Defination
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-24-2025 07:39 AM
@NikhilKumaK support group is list collector field? What do you mean by 8-10 groups?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-24-2025 07:05 AM
Sorry didn't get your requirement? share screenshots.
Support group is variable in catalog item?
If yes then you can use after insert business rule and set the group
If my response helped please mark it correct and close the thread 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
‎07-24-2025 07:12 AM
@Ankur Bawiskar Correct.
1. support group variable in catalog item which is reference to sys_group
2. assignment group variable in ci, which is also reference to sys_group(but this variable hides in sp)
If user select specific value in support group, then assignment group variable as populate the same value.
For testing purpose, I'm copying the RITM and checking in native UI then assignment group to filled.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-24-2025 07:25 AM
if you are hiding the other variable on sp then you want to populate and show when it's seen on RITM?
If yes then why not use after insert BR on sc_req_item and set the 2nd variable same as 1st
current.variables.2ndVariableName = current.variables.1stVariableName;
current.update();
If my response helped please mark it correct and close the thread 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
‎07-24-2025 07:41 AM
@Ankur Bawiskar Why do we need Business rule to populate a variable?