- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-27-2023 09:37 AM
We are planning to move to Universal Requests as the primary ticket type for users.
I'm attempting to copy the default access_hyperlink mail script and alter it so that when an incident becomes resolved, the affected user receives a notification about the related Universal Request record.
Below are the original script and my new, updated script. Could someone help me figure out why it is failing? The variables seem to check out from my background script testing.
Original access_hyperlink:
New, modified access_hyperlink_ur_incident:
The only real difference are the top two lines:
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-28-2023 10:09 AM
I "believe" you meant to write:
var tbl = 'universal_request';
vs.
var tbl = universal_request;
on line 3.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-28-2023 10:09 AM
I "believe" you meant to write:
var tbl = 'universal_request';
vs.
var tbl = universal_request;
on line 3.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-30-2023 10:55 AM - edited ‎10-30-2023 11:05 AM
-O-, you are 100% correct and I don't know how I missed it. I guess I just was looking for something more complicated and needed to step away from it for a bit.
Thank you very much, you probably saved me a bunch of wasted time!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-30-2023 01:20 PM
You're most welcome 🙂