Aligning UI Action Behavior Across Core UI and Service Operations Workspace
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2025 04:55 AM
There are two UI actions—Risk Assessment and Request Approval—but their behavior in Service Operations Workspace differs from the Core UI. What steps are needed to ensure these UI actions function consistently across both core and workspace interfaces?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2025 05:01 AM
did you check the code behind them?
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
09-11-2025 05:07 AM - edited 09-11-2025 05:08 AM
Same Ui action I want to use in core UI Change form and service operations workspace, but not working as expected
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2025 05:11 AM
are those custom or OOTB ones?
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
09-11-2025 05:19 AM
I found 2 OOTB "Request Approval" UI actions and they are only for native and won't be shown in workspace.
If you want to show them on Workspace then you will have to enable Workspace Form Button checkbox and then write your script in Workspace client script
Something like this in the UI action where we are moving to Authorize
function onClick(g_form) {
//ensure state field is present in workspace view
g_form.setValue("state", "-3");
g_form.save();
location.reload();
}
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
