Join the #BuildWithBuildAgent Challenge! Get recognized, earn exclusive swag, and inspire the ServiceNow Community with what you can build using Build Agent.  Join the Challenge.

Error while calling custom UI Page in Major Incident Management

linda_richards
Giga Expert

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.

 

linda_richards_0-1751979362439.png

 

Thanks,

Linda

 

1 ACCEPTED SOLUTION

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

View solution in original post

10 REPLIES 10

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