- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-22-2022 12:43 PM
Hello,
I have an onBefore() BR and I need to create a clickable link in the work notes. I have a script, but it is not working. Not sure what I am doing wrong.
This is what I have:
(function executeRule(current, previous /*null when async*/ ) {
// Add your code here
current.work_notes =' [code]<a href="https://www.servicenow.com">ServiceNow.com</a>[/code]';
})(current, previous);
Thanks!
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-22-2022 12:50 PM
Hi,
Furthermore, please check your system property value for: glide.ui.security.allow_codetag
This should be set to "true". Default, it is true, but perhaps someone could have changed it on your instance.
Please mark reply as Helpful/Correct, if applicable. Thanks!
Please consider marking my reply as Helpful and/or Accept Solution, if applicable. Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-22-2022 12:55 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-22-2022 12:56 PM
I updated the value of the sys_property to "true" and it works! Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-18-2022 12:27 AM