- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-28-2016 12:10 AM
I have a need to capture this information for reporting is there anyone who can suggest a method by which I can do so?
Many thanks
Solved! Go to Solution.
- Labels:
-
Analytics and Reports
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-28-2016 02:58 AM
Hi Angus,
you may need to update your script as below:
(function executeRule(current, previous) {
current.u_first_assigned_to = current.assigned_to;
current.update();
})(current, previous);
If above doesnt work, can you simply check for below: (changing the script to just below 2 lines)
current.u_first_assigned_to = current.assigned_to;
current.update();
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-28-2016 03:10 AM
Oops!
Updated my reply above.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-10-2021 08:46 AM
Hi All,
I am not very aware of how these scripts are working...
Is there a way to run such report and find the first Assigned to engineer?
Thanks in advance.