Notification bell icon on portal header redirect to custom page instead of order_status page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
4 hours ago
Hi Community,
There is bell icon on portal header
When this is selected it opens
And when any request is selected in this it redirects to Order_status and we need it to redirect to our custom page which is essentially a clone of ticket page. Our header is also a clone of the OOTB ESC header.
I did try a page route but that still shows the incorrect page id in the URL. Which widget is this part of or script include or something?
How do I achieve this?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 hours ago
Check if it helps:
Regards
Tanushree Maiti
ServiceNow Technical Architect
LinkedIn: https://www.linkedin.com/in/tanushreemaiti
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 hours ago
Hi,
The OOTB "url" is defined in each sn_ex_sp_notifs_portal_notification_content_config record. For example, 'Incident commented' defines the url as "/esc?id=ticket&table=incident&sys_id="
For your use case, you have two options
- Modify the "Request completed" portal notification content configuration record to point to your custom page
- My preferred option, applies globally, assuming your custom page takes the same parameters, would be a page route map. This applies universally.
To create a page route map:
- Go to sp_page_route_map table
- Create a new record
- Select your portal for this to apply to
- Select the order_status page as the 'route from' value
- Select your custom page as the 'route to' value
- Mark it as active
Any requests sent to order_status will be auto-redirected to your custom page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 hours ago
Hi @Kieran Anson,
I did try the portal page route but when I tried it it shows order_status in the URL instead of the custom page id.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 hours ago
Page routes intentionally preserve the URL name, however the actual presented page will be your custom page. This isn't a defect