Flow Designer

Mark Wood
Tera Contributor

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.

1 ACCEPTED SOLUTION

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

View solution in original post

5 REPLIES 5

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