- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-05-2021 07:45 AM
Hello,
I currently have a business requirement to capture the first assignment group of any given # of tickets in a report. For example, I would need a report that shows all incidents where the first Assignment group was "Test AG" over the last week. I'm unsure of how to achieve this, any ideas?
Solved! Go to Solution.
- Labels:
-
Analytics and Reports
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-05-2021 07:50 AM
This isn't something that's easy to capture as part of reporting using out-of-the-box functionality.
You'll want to add a new field to the table called u_first_assignment_group (or something similar) and then write a business rule to capture that data.
This will only help you going forwards, and you won't be able to report on historic data.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-05-2021 07:50 AM
This isn't something that's easy to capture as part of reporting using out-of-the-box functionality.
You'll want to add a new field to the table called u_first_assignment_group (or something similar) and then write a business rule to capture that data.
This will only help you going forwards, and you won't be able to report on historic data.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-08-2021 09:47 AM
Hi Mike,
This is the approach we ended up pursuing, thanks for the help!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-05-2021 07:51 AM
Hello
Refer below links, which will help you
BR,
Harika
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-05-2021 11:18 AM
Hi, you may consider creating a script based Metric definition that will capture the first assignment group, than make a report to show these groups from the incident_metric table. Or, as it was already suggested, add your custom reference field to incident table and record there a first assignment group' sys_id with a help of business rule.
Hope it helps