Create a link in the Notification to redirect to current record.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2022 05:33 AM
My requirement is I should sent notification on change of work notes in incident form and I want know how to create a link in the notification on click on the link it should redirect to current form were we change the work notes.
Could any Please help me to solve the requirement

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2022 05:38 AM
To add a link to the current record in a notification, you can use ${URL}
I hope this helps!
If this was helpful, or correct, please be kind and mark the answer appropriately.
Michael Jones - Proud member of the GlideFast Consulting Team!
Michael D. Jones
Proud member of the GlideFast Consulting Team!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2022 05:57 AM
You can try below line of code for incident table,
'<a href="' + gs.getProperty('glide.servlet.uri') + '/incident.do?sys_id='+current.sys_id + '">' + click here to go to current record + '</a>' //you can change text later
Let me know if you have any further queries.
Please mark this as Correct or Helpful if it helps.
Regards,
Abhijit
Community Rising Star 2022
Regards,
Abhijit
ServiceNow MVP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2022 11:05 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-01-2022 05:21 AM
Use below line of code :
'<a href="' + gs.getProperty('glide.servlet.uri') + '/incident.do?sys_id='+current.sys_id + '"> + click here to go to current record + </a>' ;
Please mark this as Correct or Helpful if it helps.
Regards,
Abhijit
Community Rising Star 2022
Regards,
Abhijit
ServiceNow MVP