Notification Redirection: How to Force Workspace View Instead of Classic Mode?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-19-2024 10:35 AM
I want to generate a notification through the 'sys_notification' table, and I've successfully configured the trigger and content for the notification. However, upon clicking the notification, it currently redirects to the form in classic mode. My objective is to enforce redirection to the workspace view. Is there any method to ensure it redirects to the workspace view instead?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-19-2024 11:18 AM
There you go.
Regards,
Musab
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-08-2024 08:13 AM
Hi @PedroSoares ,
You may refer this https://www.servicenow.com/community/service-operations-workspace/open-email-links-in-service-operat...
Please mark it helpful if it answers your query.
Thanks,
Haseeb Ahmed
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-28-2024 05:45 AM
Hi @PedroSoares ,
Did you find the method to ensure the notification its redirect to the workspace view. Because I facing same issue. If yes could you please guide me the step?
Thanks in Advance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-04-2024 02:45 AM
Go to sys_ux_page_registry table and open your workspace US Page Registry, then click on UX Page Properties related list and open featureRoutes page property, update below JSON data on the Value field and save it.
{
"record": {
"_default": {
"routeInfo": {
"route": "record",
"fields": [
{
"name": "table",
"mapping": {
"address": "table"
}
},
{
"name": "sysId",
"mapping": {
"address": "sysId"
}
}
],
"params": [
{
"name": "query",
"mapping": {
"address": "query"
}
},
{
"name": "extraParams",
"mapping": {
"address": "extraParams"
}
},
{
"name": "views",
"mapping": {
"address": "views"
}
},
{
"name": "selectedTabIndex",
"mapping": {
"address": "selectedTabIndex"
}
}
]
}
}
}
}
Please hit like and mark my response as correct if that helps