How to exclude all order guides from Service Operation Workspace
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-06-2025 03:58 AM - edited ‎01-06-2025 04:17 AM
We have a requirement to exclude all order guides from the Service Operations Workspace.
Currently, the out-of-the-box functionality displays both catalog items and order guides when we click on the 'Create Request' UI action on the Interaction form in the Service Operations Workspace. However, our requirement is to display only catalog items, excluding order guides, in the Service Operations Workspace.
How can we achieve this customization?
UI Action Script:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-06-2025 04:13 AM
did you check the OOB ui action how it's being invoked?
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
‎01-06-2025 04:26 AM
you can try this
1) create a user criteria with advanced script something like this
if (gs.action.getGlideURI().toString().indexOf('/now/sow/record/') > -1)
answer = false;
else
answer = true;
2) then add this user criteria in Available for related list of that user criteria
This you will have to do for each order guide if it works for 1
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
‎01-06-2025 04:54 AM
@Ankur Bawiskar
I tried with your solution but it's not working.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-06-2025 04:58 AM
did you add log and see it went inside the IF?
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader