Redirect Record Opens to SOW Workspace for Specific Role

Rajugoud
Tera Contributor

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.

2 ACCEPTED SOLUTIONS

lauri457
Tera Sage

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.

View solution in original post

Ankur Bawiskar
Tera Patron

@Rajugoud 

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! 🙏

Regards,
Ankur
Certified Technical Architect  ||  10x ServiceNow MVP  ||  ServiceNow Community Leader

View solution in original post

3 REPLIES 3

lauri457
Tera Sage

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.

Ankur Bawiskar
Tera Patron

@Rajugoud 

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! 🙏

Regards,
Ankur
Certified Technical Architect  ||  10x ServiceNow MVP  ||  ServiceNow Community Leader

Rajugoud
Tera Contributor

Thanks @Ankur Bawiskar & @lauri457 ,