- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2022 03:10 AM
Hello Experts
My URL= https://www.servicenow.com.
We want to add URL on below Comments after "successfully line " but it needs to be clickable.
Please support to achieve this
current.comments = "Access granted to "+current.variables.requested_for.name+ " successfully. you will have access on";
if (workflow.scratchpad.closedSkippedIncomplete==true){
current.state=4;
}
else{
current.state=3;
}
Thank you
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2023 02:40 AM
set system property glide.ui.security.allow_codetag to true
Please mark if answer is correct
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-25-2022 05:43 AM
@reshmapatil ,@saurav11,@ankur
Please support on this
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-25-2022 08:16 AM
Hello Akin,
Go to your workflow and Include this line of code
task.comments="Access granted to "+current.variables.requested_for.name+ " successfully. "+'[code]<a href="https://www.servicenow.com" target="_blank">ServiceNow</a>[/code]'+" you will have access on";
FYR
output
let me know if this helped or required any further information
Regards,
Shyamkumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2023 03:02 AM
Hello @shyamkumar VK
I have tried the same ur script but its not working for me.
please check it.
Pls support to achieve this.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2023 05:48 AM
@Akin ,
current.comments = [code]<a href="https://google.com" target="_blank">Google</a>[/code]
can you add this line and test if you can see URL in the comments , comment the existing line of code and add above , Just kind of troubleshoot
Regards,
Shyamkumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2023 02:24 AM
Hello @shyamkumar VK
I have done the same but its not working for me.
current.work_notes="Access granted to "+current.variables.requested_for.name+ " successfully. "+'[code]<a href="https://google.com" target="_blank">Google</a>[/code]'+" you will have access on";