- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-08-2025 05:57 AM
Hello Community,
My requirement is to customize the Major Incident Management UI page that appears after clicking the 'View Workbench' UI action within a major incident record. I am attempting to call my custom UI page by overriding the Out-of-the-Box 'View Workbench' UI action, but I am encountering the following error.
Your help is much appreciated.
Thanks,
Linda
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-12-2025 12:11 AM
Removing $ sign from below syntax has fixed the issue. $ symbol is reserved for OOTB system UI pages, hence it should not be used for custom UI pages. var url = "/$<ui_page_endpoint>.do?sysparm_stack=no&sysparm_sys_id=" + g_form.getUniqueValue();
Thanks,
Linda
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-12-2025 12:11 AM
Removing $ sign from below syntax has fixed the issue. $ symbol is reserved for OOTB system UI pages, hence it should not be used for custom UI pages. var url = "/$<ui_page_endpoint>.do?sysparm_stack=no&sysparm_sys_id=" + g_form.getUniqueValue();
Thanks,
Linda