- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2024 01:31 AM - edited 08-18-2024 02:05 AM
Hi everyone,
I'm setting up an indicator to retrieve all incidents. I want to filter these incidents so that only those with "xyz" in their sla_definition.name field are displayed. How can I achieve this? Specifically, how do I use dot notation within the indicator's condition to access the sla_definition.name?
Any guidance would be greatly appreciated. Thanks!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2024 04:33 AM
Hello @JohnDF ,
SLA definitions are defined in contract_sla table, whereas the history of incidents to whom the SLA gets attached is stored in task_sla table.
Table -> task_sla
Query -> task.sys_class_name=incident^sla.nameLIKExyz
It will retrieve you the task_sla records which got created for incident table records where sla name contains xyz. Hope it answers to your question.
If my response helps you in any way, kindly mark this as Accepted Solution/Helpful and help in closing this thread.
Regards,
Shubham
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2024 04:33 AM
Hello @JohnDF ,
SLA definitions are defined in contract_sla table, whereas the history of incidents to whom the SLA gets attached is stored in task_sla table.
Table -> task_sla
Query -> task.sys_class_name=incident^sla.nameLIKExyz
It will retrieve you the task_sla records which got created for incident table records where sla name contains xyz. Hope it answers to your question.
If my response helps you in any way, kindly mark this as Accepted Solution/Helpful and help in closing this thread.
Regards,
Shubham