Showing changes to variables in SC Items in the Activity register
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2014 07:20 AM
Hi, I can see the audit history for variables within service catalog items, however I want to show any changes within 'activity'.
I've tried adding all available fields within 'personalize activities' but this does not capture any changes to the variables.
Has anyone else managed to do this?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-10-2014 05:55 AM
Latest update for reference field... Seems to work per my initial testing ....
case('8'): //reference investigate this
var getReferenceDisplayValue = new GlideRecord(q_type.reference.toString());
if(getReferenceDisplayValue.get(q_value))
{
answer = getReferenceDisplayValue.getDisplayValue();
}
break;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-10-2014 06:13 AM
awesome code i have added that to my rule.. i will probably use the same method to get list collectors identified!! THANKS!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-10-2014 07:01 AM
This code is above my station but it seems to be working great my end too so thank-you. Please let me know if you get it working for list collectors also. Cheers, Daniel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-10-2014 07:28 AM
Also, out of interest - we currently have auditing of variables turned on and showing under it's own tab 'Audit history' - this obviously mitigates the issue of sys IDs being shown instead of display values currently etc. however is this a bad idea to have turned on (and if so why)? Thanks, Daniel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-10-2014 07:40 AM
i don't like doing much with the sys audit table as it is very slow.. and one of our requirements was to get the information so the customers can see it so we needed it on the item or task form.. since the variables are on the item that seemed the best way.