- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-17-2023 02:45 AM
Hello experts,
I am creating an incident for RITM using the flow designer.
My requirement is to have the RITM number appear in the work notes field on the incident form along with
a link. When a user clicks on the RITM number, the RITM form should appear.
I have written an inline script for this purpose, but I'm not getting the desired results.
Could you please guide me on this? Thank you.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-17-2023 04:39 AM
Hi,
You can add as per below code.
var ritmNum=fd_data.trigger.request_item.number+"";
var wn='[code]<a href="'+RITM+'" target="_blank">'+ritmNum+'</a>[code]'
Thanks and Regards,
Saurabh Gupta
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-17-2023 04:39 AM
Hi,
You can add as per below code.
var ritmNum=fd_data.trigger.request_item.number+"";
var wn='[code]<a href="'+RITM+'" target="_blank">'+ritmNum+'</a>[code]'
Thanks and Regards,
Saurabh Gupta