Retroactive SLA Not Starting Correctly for Reopened Incidents in ServiceNow
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
β07-11-2025 03:52 AM
Hello ServiceNow community π
Today, I want to share a real-time issue I resolved recently related to SLAs not starting retroactively for reopened incidents. This might help you if you handle complex SLA conditions in ITSM implementations.
βΈ»
Problem Statement
Scenario:
For our client, we had an SLA that should retroactively start even if the incident is reopened after resolution. However, we noticed that:
β’ When an incident moved from Resolved to In Progress, the SLA did not restart.
β’ The SLA definition had βRetroactive startβ enabled, but the expected behaviour was inconsistent.
βΈ»
Root Cause Analysis
Upon investigating:
1. SLA conditions were based on Incident State changes.
β’ Start condition: State is In Progress.
β’ Stop condition: State is Resolved.
2. Retroactive start field was set to βCreatedβ.
β’ This worked only when SLA was attached initially upon creation, not upon re-opening.
3. Business Rule evaluation order impacted SLA recalculation.
β’ The business rule updating a dependent field was running after SLA evaluation, causing condition mismatch.
βΈ»
Solution
β
Step 1. Modify SLA Definition
β’ In the SLA Definition β Retroactive start field, change from Created to State.
β’ Set βRetroactive start conditionβ to trigger when state becomes In Progress.
β
Step 2. Adjust Business Rule Order
β’ Identify the Business Rule updating category/subcategory that impacts SLA condition fields.
β’ Change its βWhenβ to βBeforeβ and Order to < 100 to ensure it runs before SLA Engine evaluates conditions.
β
Step 3. Validate with Test Cases
Tested with below scenarios:
1. New Incident created β Assigned β In Progress β Resolved β Reopened β In Progress.
β
SLA restarted retroactively as expected.
2. Incident reopened multiple times.
β
SLA attached every time with correct timings.
βΈ»
Key Takeaways
π§ Always ensure Business Rules updating fields tied to SLA conditions run before SLA evaluation.
π§ Retroactive start needs correct field and condition mapping depending on your process flow.
π§ Test SLA definitions with multiple lifecycle scenarios to avoid future SLA breaches or miscalculations.
βΈ»
I hope this solution helps you in your implementations. If you face similar SLA challenges, feel free to share them in the comments. We can brainstorm solutions together.
Regards,
Urvashi Jain
=========================================================
If my response proves useful, please indicate its helpfulness by selecting "Accept as Solution" and " Helpful." This action
Letβs keep learning and growing as a community.
βΈ»
#ServiceNow #SLA #ProblemSolving #ITSM #DeveloperTips #ServiceNowCommunity #Learning
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
β07-11-2025 03:58 AM
Am I missing something here? What does the BR have to do with this?
Also: why put a 'stop' condition on 'resolved'? If you would make 'resolved' a pause condition and 'closed' the stop condition, your SLA would just continue after being reopened. You are now creating new SLA records that aren't necessary. The SLA should stop the moment the Incident is fully resolved and that's only after the caller confirms it (either actively, or by letting the auto closure close the incident).
You now need to report on multiple SLA records for this incident.
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
β07-11-2025 06:08 AM
This is a sharp observation and correct interpretation of SLA design logic. Hereβs a clear explanation of whatβs happening and whatβs being pointed out:
βΈ»
β
What they are highlighting:
β’ Business Rule (BR) relevance β Theyβre asking: Why is a Business Rule involved here? Because SLA definitions themselves usually handle pause/start/stop conditions. Using a BR externally to manipulate SLAs is unnecessary unless you are enforcing an exception process or custom logic outside SLA conditions.
βΈ»
β
On the stop condition for βresolvedβ:
They are saying:
β’ If you set βresolvedβ as the stop condition, the SLA will end immediately when the state changes to Resolved, regardless of whether the incident gets reopened.
β’ Best practice: Set βresolvedβ as pause condition and βclosedβ as stop condition.
This way, if the ticket is reopened from Resolved, the SLA resumes from where it paused, ensuring a single SLA record continues tracking until the final closure.
βΈ»
π΄ Issue with current design:
β’ Your current setup stops the SLA at βresolvedβ and then creates a new SLA record upon re-resolve or further updates.
β’ This leads to multiple SLA records for the same incident, making reporting, SLA compliance checks, and client communications complex and fragmented.
βΈ»
β
What should ideally happen:
1. Pause on Resolved: SLA pauses when incident is marked resolved.
2. Resume on Reopen: SLA resumes if incident state goes back to βIn Progressβ or βOn Holdβ.
3. Stop on Closed: SLA stops when incident is fully closed (either by user confirmation or auto-closure post-resolution time).
βΈ»
π§ Summary Guidance:
βοΈ Review if your SLA Definition conditions can handle this logic directly instead of an external BR.
βοΈ Configure Resolved = Pause and Closed = Stop in your SLA definition.
βοΈ Remove unnecessary BR logic if itβs duplicating SLA engine functionality.
βοΈ Ensure stakeholders agree on this behaviour, as some organisations may prefer SLA to stop at βResolvedβ if business considers resolution as fulfilment.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
β07-11-2025 06:08 AM
If you want, I can help draft a communication reply or test scenarios to validate these configurations today for your SLA review tasks. Let me know.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
β07-13-2025 10:51 PM
You have put my response to your question into chatgpt and are posting it here. What's your point? You haven't answered my questions, nor is it clear if you have resolved the issue or are still in need of assistance?
Please mark any helpful or correct solutions as such. That helps others find their solutions.
Mark