Generic operations automation content covers things like "automate your email follow-ups" and "set up calendar reminders." That is not what a COO of a 200-person manufacturer is looking for.
This post covers five specific manufacturing operations workflows that mid-market manufacturers are building in 2026: what they automate, how they work, and what the operating impact actually is.
All five use n8n for workflow logic and, where applicable, Retool for the internal dashboard layer. None of them require replacing the ERP.
These five workflows share three characteristics that make them high-priority automation candidates:
The manual version: A buyer or purchasing coordinator sends a purchase order to a supplier and then waits for an acknowledgment. If the supplier does not respond, someone has to follow up manually. That follow-up often does not happen until the material is already late.
What the automation does:
n8n monitors the status of outbound POs in the ERP. When a PO is created and sent to a supplier, n8n starts a tracking clock. If no acknowledgment is received (via supplier portal, EDI, or email confirmation) within a defined window (typically 24 to 48 hours), n8n sends an automated follow-up directly to the supplier contact on file.
If there is still no response after a second window, n8n escalates to the purchasing manager via Slack with the PO details and a flag for manual follow-up.
Operating impact:
Key design decision: The acknowledgment trigger needs to be defined per supplier. Some suppliers confirm via EDI 855, others by email, others by updating a portal. The workflow needs to know what a valid acknowledgment looks like for each supplier type.
The manual version: A production supervisor discovers a job is behind schedule at the end of shift, or when a customer calls about a late order. By then, the window for intervention is much smaller.
What the automation does:
n8n runs on a scheduled poll (every 30 to 60 minutes against the ERP) and checks for production jobs where the work order status has fallen behind based on two conditions:
When either condition is met, n8n sends an alert to the relevant production supervisor with the specific job number, current status, and expected delivery impact. Alerts route by work center or department, not as a broadcast to everyone.
For high-priority jobs (flagged by customer commitment or order value threshold), alerts can also be copied to the COO or VP Operations.
Operating impact:
Key design decision: Threshold tuning matters. Alert too aggressively and supervisors stop reading the alerts. A good starting point is a 4-hour lag threshold for standard jobs and a 1-hour threshold for expedited jobs, adjusted based on the first two weeks of production data.
The manual version: A planner reviews inventory levels, often in a weekly planning meeting, and issues purchase orders manually. By the time the PO is placed, the reorder point may have already been breached for several days.
What the automation does:
n8n polls inventory levels in the ERP on a scheduled basis (hourly for fast-moving items, daily for slow-moving). When an item's on-hand quantity drops below its defined reorder point, n8n:
The buyer reviews and approves the draft PO. The automation handles the detection and draft creation; the human approves the transaction.
Operating impact:
Key design decision: Reorder points need to be accurate in the ERP for this to work. If reorder points are set incorrectly or have not been updated since lead times changed, the automation amplifies the error. A one-time reorder point audit is required before this workflow goes live.
The manual version: At the end of each shift, a supervisor fills out a shift report in a spreadsheet or paper log. This is entered manually, often incomplete, and rarely aggregated or visible to ops leadership until the following day.
What the automation does:
n8n sends a structured input prompt to supervisors at the end of each shift via Slack or email. The prompt contains a short-form input with five to seven fields: production output vs. target, open exceptions, equipment issues, any jobs carried over, and a notes field for anything outside the template.
Supervisors fill in the prompt (takes 2 to 3 minutes vs. 10 to 15 for a manual report). n8n receives the responses, aggregates them by shift and work center, and writes the data to a Retool dashboard that ops leadership can view in real time.
A summary report is sent to the COO or VP Operations at the end of the production day, compiled from all shift inputs, without requiring anyone to manually aggregate the data.
Operating impact:
Key design decision: Keep the prompt short. If supervisors are asked for more than 7 fields, completion rates drop. Start with the minimum useful set and add fields only if there is a specific reason.
The manual version: When a quality inspector identifies a nonconforming lot, they flag it in the ERP or on a paper form. The escalation path (who gets notified, how quickly, and with what information) is inconsistent. Lots sit in quality hold status without being dispositioned, creating production delays and inventory uncertainty.
What the automation does:
n8n watches the ERP for quality hold status changes. When a lot is moved into quality hold, n8n immediately:
If the disposition decision has not been made within a defined window (typically 4 to 24 hours depending on production urgency), n8n escalates to the quality manager and production manager with the lot details and the delay flag.
When the disposition is completed (use, rework, scrap, return to vendor), n8n sends a close-out notification to the relevant parties and updates the production plan if the lot is scrapped.
Operating impact:
Key design decision: The escalation window should be agreed with quality and production leadership before the workflow goes live. Too short and it creates noise. Too long and it does not solve the underlying delay problem.
These workflows share an architecture:
The infrastructure built for any one of these five workflows is reusable for the others. Once the ERP API connection is established for workflow one, workflows two through five use the same credentials. Once the Retool dashboard is deployed for shift reporting, quality hold status can be added as another panel.
That reuse is the reason automation compounds over time. The first workflow takes the longest. Each subsequent one builds faster on the infrastructure already in place.
The Flow Kaizen guide covers how to prioritize these five workflows for your specific operation, including a readiness scoring matrix and the sequencing logic for which one to build first based on your ERP, your team, and your highest-margin pain point.