ServiceNow Troubleshooting · LessonBy Neelima, ServiceNow Architect · Published · ServiceNow · all levels
Flow Designer failures
Read flow execution details, find the failing step, and fix the causes that repeat.
Quick answer
Read flow execution details, find the failing step, and fix the causes that repeat.
Key takeaways
- Execution details show inputs and outputs per step
- No execution usually means the trigger never matched
- Continue on error hides failures, choose it deliberately
- Alert when a critical flow stops completing
Start with the execution
Open the flow, choose Executions, and pick the run. Each step shows inputs, outputs and duration. Ninety percent of flow tickets are answered here without opening a script.
Frequent causes
The same handful of issues recur.
- Trigger condition never matched, so no execution exists at all
- A record was updated by a rule after the trigger, changing the data the flow read
- Wait for condition never satisfied because the condition uses a field the process never sets
- An action failed on an external call and error handling was set to continue, hiding it
Preventing repeats
Set error handling explicitly on every external action, log a correlation value at the start, and add a flow that alerts when a critical flow has not completed within its expected time. Silent automation failures cost more than loud ones.
Practice challenge
+0 XPStreak ×0
Question 1 of 2
Where do you see the inputs a step received?
Frequently asked questions
How long are execution details kept?
They are subject to cleanup jobs, so investigate promptly or increase retention for critical flows.
Why did the flow read old data?
Another rule updated the record after the trigger fired. Re read the record in the flow when the value matters.