What you might see
You may see: `automation_plan_not_found`, `automation_plan_binding_required`, or a schedule history run marked failed/blocked.
Scheduler · error · admin
Schedules are bound to saved mappings. If a mapping is deleted, recreated, or moved, the schedule cannot run until it is rebound.
automation_plan_not_found: automation plan not found
You may see: `automation_plan_not_found`, `automation_plan_binding_required`, or a schedule history run marked failed/blocked.
- The saved mapping was deleted.
- The schedule references an old mapping ID.
- The project was restored from backup without the mapping.
- A schedule was imported without its mapping dependency.
1. Open Scheduler.
2. Edit the schedule.
3. Select a current mapping.
4. Save the schedule.
5. Run Now to verify the binding.
Avoid deleting mappings that are referenced by active schedules. Disable or update schedules before removing mappings.
```sql
SELECT schedule_name, mapping_id
FROM project_automation_schedules
WHERE enabled = 1;
```