report that queries the incident table for the number of times an individual has touched a ticket
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2025 02:05 PM
I need to build a report that queries the incident table for the number of times an individual has touched a ticket. I would like to use the dynamic @ME variable in the build of that report. I dont want to count assigned to. I want to count how many tickets an individual interacted with over a specified of time.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2025 10:53 PM
1. Use the sys_journal_field table
This table records work notes, comments, and other journal entries.
Table: sys_journal_field
Field to filter on: name = incident
Filter by: sys_created_by = @ME (to get user interactions)
2. Create a New Report
Go to Reports > View / Run
Click Create a report
Set the following:
Source type: Table
Table: Journal Field [sys_journal_field]
Type: Bar Chart (or list, depending on preference)
3. Set Report Filters
Name is Incident
Sys Created By is @ME
Sys Created On is on or after Last 30 days (or choose your time frame)
4. Configure the Report Grouping
To count unique interactions per ticket:
Group by: Element ID (this is the incident record)
Aggregation: Count
To see overall activity per person:
Group by: Sys Created By
Aggregation: Count
5. (Optional) Join with Incident Table
To add context like ticket number, you could create a Database View that joins incident with sys_journal_field.
Alternate: Use sys_audit for Field Changes
If you want to track changes like updates (e.g., status changes, description edits), use the sys_audit table instead.
Table: sys_audit
Filter:
Table = Incident
Sys Created By = @ME
Sys Created On = last 30 days
Interpreting the Data
Each row = an interaction (journal entry or field change)
Use grouping/aggregation to get total interactions per ticket or per user
If my response helped please mark it correct
Thanks, and Regards,
Suyash
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2025 01:38 PM
I'm looking exactly the same but for CTASK to build a Dashboard under the Platform Analytics, unfortunately the mentioned table Table: Journal Field [sys_journal_field] does not exist, which other table can be used to achieve this metric?