Provider notification Link is not redirecting to the workspace
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-28-2024 04:16 AM
I've created a provider 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?
Thanks is Advance,
Eswari. K
- 658 Views
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-21-2024 05:47 AM
We're having the exact same requirement, did you manage to figure out how to redirect to the workspace?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-04-2024 02:43 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 mark it solved if you satisfied with the solution.