- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2026 04:36 PM
Hello All
I have a requirement in ServiceNow where users who have the x_example_role should continue to have their landing page in the Native UI (UI16). However, whenever they click on any record from a list view, open a record from a report, or access a record through global search, the record should automatically open in the SOW Workspace instead of the Native form view. So essentially, the landing experience remains Native, but the record form experience should be redirected to Workspace for only this specific role. Has anyone implemented a similar setup? What would be the recommended and upgrade-safe approach to achieve this? Also, are there any performance considerations with such redirection?
Thanks in advance.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2026 06:27 PM
Navigation handlers [sys_navigator] are what you need, should be pretty self-explanatory how to use once you have a look at the oob ones.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2026 07:43 PM
As mentioned by @lauri457 you can use navigation handler for this
see this detailed blog
ServiceNow Hidden Gem #1: Navigation Handler
💡 If my response helped, please mark it as correct ✅ and close the thread 🔒— this helps future readers find the solution faster! 🙏
Ankur
✨ Certified Technical Architect || ✨ 10x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2026 06:27 PM
Navigation handlers [sys_navigator] are what you need, should be pretty self-explanatory how to use once you have a look at the oob ones.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2026 07:43 PM
As mentioned by @lauri457 you can use navigation handler for this
see this detailed blog
ServiceNow Hidden Gem #1: Navigation Handler
💡 If my response helped, please mark it as correct ✅ and close the thread 🔒— this helps future readers find the solution faster! 🙏
Ankur
✨ Certified Technical Architect || ✨ 10x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2026 10:19 PM
Thanks @Ankur Bawiskar & @lauri457 ,
