A report that shows all closed tickets where the opened for responded after they were closed.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-04-2025 01:36 AM
Hello everyone
I would appreciate any help
i want create report that shows all closed tickets where the opened for responded after they were closed.
Thanks in advance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-04-2025 02:07 AM
If you need to use a scripted filter to check the response time, you can use a Business Rule or Script Include to calculate this. For example:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-04-2025 06:50 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-04-2025 06:57 AM
Database View
For a no-code approach (admin access needed), you can:
Create a Database View joining:
incident table
sys_journal_field table (on element_id = incident.sys_id)
Add filters:
incident.state = closed
sys_journal_field.sys_created_on > incident.closed_at
sys_journal_field.sys_created_by = incident.opened_for
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-04-2025 02:40 PM
Hi, thanks for the reply. I would appreciate your help.
I think I'm missing something.
I created a Database View as you mentioned, as can be seen in the image (1).
But I couldn't figure out where I place the filters as you mentioned later in the message.
Can you help me with this?
Thanks in advance.