UI Page Scope issues
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-09-2016 12:55 AM
I have a UI page created in an Custom Application.
I'm trying to access the UI page via UI Action. But getting an error saying "Page does not exist".
If I create a similar page in Global Application, Then its working.
How can I make a UI Page created in an custom application accessible from a scoped application using UI action?
- Labels:
-
Service Mapping
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-09-2016 07:21 PM
Arunamshu,
What are you using to reference the UI Page? Are you using just the UI page name, or the scoped name? Can you open it in the browser outside of a UI Action?
When referencing a UI page in a scoped application, if the name is my_ui_page. Then to open it it would like like my_scope_name_my_ui_page.do
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-10-2016 04:19 AM
Hi Chris,
Thanks for the reply.
My UI Page name is : kitkat
Endpoint name: x_temal_uitest_cat_kitkat.do
In my UI action, i have created a button. I'm trying to define a glide dialog popup which will redirect to the above UI page. I have tried both with UI page name as well as endpoint name. Not working.
Below is the code I'm using:
var dialog = new GlideDialogWindow('x_temal_uitest_cat_kitkat.do');
dialog.render();
Error: Page not found.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-10-2017 07:07 AM
Little late, but looks like this was close. For GlideDialogWindow, you just need to omit the ".do" off the UI Page name. Still need the scope name though.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-09-2016 09:27 PM
Hi Arunamshu,
I agree with Chris. Basically you need to access the UI page via end point field on the UI page you have created.