- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-06-2015 03:25 PM
Is there a way to configure the new button available on any related list.
I would like the new button on a related list to redirect to a UI Page instead of the form that is usually generated using the table.
I also need to be able to send certain data to the UI Page.
Thanks,
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-06-2015 04:15 PM
Rahul,
The Global UI Action 'New' is located at : https://<instance_name>>.service-now.com/nav_to.do?uri=sys_ui_action.do?sys_id=7b37cc370a0a0b34005bd7d7c7255583
Now, on this select the table which you need and do a 'Insert and Stay' this will override the Global New button and in the script have something like:
action.setRedirectURL(<<ui_page>>.do);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-06-2015 04:15 PM
Rahul,
The Global UI Action 'New' is located at : https://<instance_name>>.service-now.com/nav_to.do?uri=sys_ui_action.do?sys_id=7b37cc370a0a0b34005bd7d7c7255583
Now, on this select the table which you need and do a 'Insert and Stay' this will override the Global New button and in the script have something like:
action.setRedirectURL(<<ui_page>>.do);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-06-2015 04:50 PM
Thanks Mani, Works well.