How to track specific list usage in Agent Workspace for HR Case Management
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2 hours ago
I would like to track individual usage (i.e. views) for specific UX Lists in Agent Workspace for HR Case Management.
I have done some JavaScript in the EC Pro to fire custom UA Events on button click:
var payload = {};
payload.name = 'ESC Mega Menu Clicked';
payload.category = 'navigation';
payload.data = {};
payload.data['Link'] = $(e.target).text().trim();
payload.data['URL'] = $(e.target).parents('a').attr('href');
console.log(payload);
snA.addEvent(payload);
So I was thinking maybe I would check if the URL had a particular sys_id (of the List I want to track) and fire an event like that - does that make sense?
What I can't seem to find is where to put that kind of script in Agent Workspace and how to hook it up.
Any help would be greatly appreciated!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
36m ago
Hi @CCSF-Syd
Refer these links:
Lists in Agent Workspace for HR Case Management
Configuring Lists in HR Agent Workspace using UI Builder for Agent Workspace for HR Case Management
Regards
Tanushree Maiti
ServiceNow Technical Architect
LinkedIn: https://www.linkedin.com/in/tanushreemaiti
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
33m ago
I'm sorry - I don't see anything in those links that addresses my question - is there something specific you are meaning to point me to?