- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2025 12:51 AM
Dear Team,
We have a record producer to submit a HR case and when HR is submitted, a message is coming. PFA below.
We would like to make this HR case with Hyperlinks and when users will click on this.
Thanks
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2025 09:09 AM
Hi @_Samay ,
Replace the below code in the HTML template.
<div class="main-banner">
<h1>Thank you for your submission!<br></h1>
<h2>Your reference number is <a href="esc?id=hrm_ticket_page&sys_id={{::data.ticketid}}&table={{::data.table}}">{{::data.number}}</a> <br></h2>
</div>
Mark this as Helpful / Accept the Solution if this helps so that it helps future hunters.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2025 03:42 AM
Hello @_Samay ,
You can go with below approach to make it hyperlink.
- Navigate to the widget that displays the message.
- Retrieve the sys_id and coe_table of the created case.
- Wrap the case number with the following code
<a href="?id=hrm_ticket_page&sys_id=<<sys_id>>&table=<<hr_coe_table>>">{{data.your_ticket_Number}}</a>
Mark this as Helpful / Accept the Solution if this helps so that it helps future hunters.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2025 08:44 AM
@Community Alums - Thanks for your message. I have checked and found that there is a confirmation widget.
Please help me, where and how we can make changes, so that this will be with hyperlinks.
PFA Below screenshots.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2025 09:09 AM
Hi @_Samay ,
Replace the below code in the HTML template.
<div class="main-banner">
<h1>Thank you for your submission!<br></h1>
<h2>Your reference number is <a href="esc?id=hrm_ticket_page&sys_id={{::data.ticketid}}&table={{::data.table}}">{{::data.number}}</a> <br></h2>
</div>
Mark this as Helpful / Accept the Solution if this helps so that it helps future hunters.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-05-2025 05:44 AM
Dear @Community Alums - We have make this. Thanks, In Server Script, We prepare a URL and use this into HTML.