- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-11-2018 03:26 PM
how to include RITM number in the email notification? so by clicking on the link they'll be directed to the RITM?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-11-2018 03:33 PM
If the email notification is firing from the sc_req_item (Request item table) then you can add below text in the email body and that should give the link to access the record
Click here to view Requested Item: ${URI_REF}
If the notification is firing for any other table ( like catalog task) that is referencing RITM then use below line
Click here to view Related RITM: ${request_item.URI_REF}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-11-2018 03:33 PM
If the email notification is firing from the sc_req_item (Request item table) then you can add below text in the email body and that should give the link to access the record
Click here to view Requested Item: ${URI_REF}
If the notification is firing for any other table ( like catalog task) that is referencing RITM then use below line
Click here to view Related RITM: ${request_item.URI_REF}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-18-2021 04:53 AM
Thanks!