- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2024 12:51 AM
Hi All,
Can you help me top add hyperlink in the flow designer script part
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2024 01:11 AM - edited 01-23-2024 01:24 AM
Hi @chandan31
We need this [code][/code] block for the html tag to be able to put a hyper link in the work notes.
Updated sample for your case
var recordID = '<your_record_sys_id>'; //your record sys_id
var displayText = '<your_display_text_in_work_notes>'; //your display text
var workNotes = '[code]<a href="esc?id=hrm_ticket_page&table=sn_hr_core_case_workforce_admin&sys_id=' + recordID + '">' + displayText + '</a>[/code]';
return workNotes;
Cheers,
Tai Vu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2024 01:11 AM - edited 01-23-2024 01:24 AM
Hi @chandan31
We need this [code][/code] block for the html tag to be able to put a hyper link in the work notes.
Updated sample for your case
var recordID = '<your_record_sys_id>'; //your record sys_id
var displayText = '<your_display_text_in_work_notes>'; //your display text
var workNotes = '[code]<a href="esc?id=hrm_ticket_page&table=sn_hr_core_case_workforce_admin&sys_id=' + recordID + '">' + displayText + '</a>[/code]';
return workNotes;
Cheers,
Tai Vu

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2024 01:17 AM