- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-27-2021 10:07 PM
Hello,
Can someone please provide suggestion on how we can use Flow Designer to add a hyperlink in RITM Work Notes to a change recorder?
Thank you
Solved! Go to Solution.
- Labels:
-
Team Development
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-02-2021 10:40 PM
Hi,
just try this
var sysId = fd_data._7__for_each.item.sys_id;
var tableName = 'change_request';
var number = fd_data._7__for_each.item.number;
var url = '<a href="' + '/' + tableName + '.do?sys_id=' + sysId + '">' + number + '</a>';
return '[code]' + url + '[/code]';
Regards
Ankur
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-02-2021 10:40 PM
Hi,
just try this
var sysId = fd_data._7__for_each.item.sys_id;
var tableName = 'change_request';
var number = fd_data._7__for_each.item.number;
var url = '<a href="' + '/' + tableName + '.do?sys_id=' + sysId + '">' + number + '</a>';
return '[code]' + url + '[/code]';
Regards
Ankur
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-02-2021 11:00 PM
You are a genius and a life saver. It is working prefect.
1. How to add a popup message in the f(x)
2. I would like to learn more about on how to code in f(x). Do you know any links that you can share.
Thank you so much for all your time and effort.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-02-2021 11:11 PM
Glad to help.
Please remember to mark response helpful as well.
popup message not sure
You can get more details on f(x) from docs etc
Regards
Ankur
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-22-2024 03:01 AM
Hi Ankur,
I want to add a share point URL as hyperlink in between some text in the additional comments of Requested Item record in flow designer.(Eg:- Please look into the GOOGLE for more information). I have tried the above code but it is not working.
Could you help it out?
Thanks,
Nasreen