- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2022 12:44 AM
Hello!
I need an advise on how to properly set up Response SLAs so it's as much OTB as possible.
My customer has several response SLAs set up this way:
- Start condition: active = true
- Stop condition: state = in progress or state = resolved
When the incident changes state to 'in progress', the SLA is completed, as expected.
The issue with this setup is that after an incident changes state to 'on hold', a new SLA is attached to the incident. I assume it's because the stop condition stops applying, but the start condition remains true, so the SLA is attached.
I thought about changing the start condition to: state = new instead of active = true, but this is also not quite right - the technicians usuallly create an incident and assign it to themselves, so the state changes to 'in progress' automatically and no SLA is attached.
Thank you in advance!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2022 12:14 AM
Start condition: active = true
Pause condition: assigned_to is not empty (or state is not new)
Stop condition: active = false
Personally I don't really like the immediate assigning on creating a ticket and setting the state to in progress, but I understand not being able to go around that.
Please mark any helpful or correct solutions as such. That helps others find their solutions.
Mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2022 11:44 PM
Hi
Thank you for the reply, but what if someone assignes the ticket to themselves upon creation? The response SLA will not be attached in this case.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2022 11:55 PM
Correct. Because in this case the assigned to is present at the time of ticket creation.
If you want to still attached that sla then you can write conditions as below:
Start condition: active true + your own condition
Stop condition: assigned to is not empty
So that your response sla will get attached and will show status as completed.
Regards,
Gunjan