Process Automation
Replacing manual steps with system-executed ones, so the process runs the same way every time.
What it actually does
It makes an existing process faster and more consistent. It does not make it correct. Automating a step that produces the wrong outcome produces the wrong outcome faster, and removes the person who was quietly compensating for it.
The failure mode with no event
Specifying one so it can be built
Trigger and conditions precise enough for someone else to build from. "When a lead is qualified" is not buildable; a named field reaching a named value is.
Failure behaviour, chosen deliberately. Log-and-skip is fine for low stakes and dangerous for anything touching routing or billing.
A named owner, recorded before it ships.
A monitor on the output — a count that should be non-zero — rather than on the automation's own status.
Sequencing
Fix the process design before automating. The current-state finding decides whether you are automating or entrenching.
Check the fields the conditions read for null rate at fire time. An automation keyed on an empty field never fires and never complains.
Look for conflicting triggers across automations. Two firing on the same event produce intermittent behaviour that is very hard to diagnose later.
RELATED TERMS
Data Governance
The rules determining who may change what, how changes are reviewed, and how they are recorded. The control that stops a designed system from drifting back to whatever it was before.
Data Orchestration
Coordinating how data moves and transforms across systems so a multi-tool stack behaves like a single one.
Integration Layer
The connections moving data between systems, and the rules governing direction, timing and conflict.
COMMON QUESTIONS
- What should you automate first?
- High-frequency, low-judgement, well-defined steps. Frequency times time saved gives the ranking; the well-defined part is the precondition.
- Why do automations break silently?
- Because most have no failure path. A workflow that stops firing produces no error and no alert — the absence of an action is not an event, so nobody notices until a report looks wrong.
- What should you never automate?
- A step whose current-state finding was that it is wrong rather than slow. Automation increases throughput including the throughput of defects, and it removes the human who was catching them.
- Who should own an automation after it is built?
- A named person. An automation without an owner will not survive the next system change, which is the most common way they degrade.
FURTHER READING
Learn how to apply this: CRM Admin 101
Definitions are the vocabulary. The courses are where you learn to operate it, with the interactive audit tools.
See the course