I would like to create a link to the Approval page of the Request item in the content of the notific
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-03-2023 11:18 PM
I am creating a notification for the Approval table.
I would like to create a link to the Approval page of the Request item in the content of the notification.
How can I create the link?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-03-2023 11:21 PM
try ${URI} or ${URI_REF}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-03-2023 11:26 PM
Hi,
Thank you for the comment!
It will have these letters at the end...
What do I do to remove " target="_self">?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-03-2023 11:39 PM - edited 07-03-2023 11:40 PM
In that case you have to build your own link using email notification scripts. and call that in the email using ${mail_script:script name}
In your case below code in notification script may work. Please check
template.print('<a target="_blank" href="/sysapproval_approver.do?sys_id="'+current.sys_id +'> Click Here </a>');
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-03-2023 11:49 PM
Hi,
Thank you so much!
I didn't know this function.
Is this okay??