- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-16-2015 12:17 PM
Good afternoon,
I am looking at a way to run a report that shows how many tickets an agent has updated in a given week, basically a snapshot of how much work a person has done, created tickets, updated tickets, everything.
any ideas on how to do this?
Thanks,
Donovan
Solved! Go to Solution.
- 6,415 Views
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-16-2015 12:31 PM
Created tickets is easy since there's a dedicated field for it. UPDATED tickets is a whole other problem. It's a problem because you really need a reporting record for every update they make (because none of us are planning on putting a bajillion reference fields on a task for every potential updated_by).
And that's really what metric definitions are for: Metric Definition Support - ServiceNow Wiki
(EDIT: I suspect Performance Analytics does a *much* better job of it, but so few people actually have that add on, I usually don't lead with that answer)
(EDIT2: I've been squeezing every drop of value out of Metrics for a couple years now, so you can feel free to reach me at rfedoruk (at) wolfpackcs (dot) com any time)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-16-2015 12:31 PM
Created tickets is easy since there's a dedicated field for it. UPDATED tickets is a whole other problem. It's a problem because you really need a reporting record for every update they make (because none of us are planning on putting a bajillion reference fields on a task for every potential updated_by).
And that's really what metric definitions are for: Metric Definition Support - ServiceNow Wiki
(EDIT: I suspect Performance Analytics does a *much* better job of it, but so few people actually have that add on, I usually don't lead with that answer)
(EDIT2: I've been squeezing every drop of value out of Metrics for a couple years now, so you can feel free to reach me at rfedoruk (at) wolfpackcs (dot) com any time)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-16-2015 12:35 PM
Great thanks, looks like this will be helpful!
Thanks,
Donovan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-14-2020 10:40 PM
Hi Robert...Can you please tell me how to do this in PA.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-16-2015 12:35 PM
You can use sys_history_line to see everything that was changed and by whom. Be careful reporting on system tables, though. They are quite large.
You can introduce a table and a business rule that records when a user touches a record and how often. That might work going forward.