Scheduled Task
Also known as: Cron Job, Recurring Task, Scheduled Job
A scheduled task is an automated action set to run at a specific time or recurring interval without human intervention.
Definition
A scheduled task is any automated action your software runs on a predefined timetable — hourly, daily, weekly, or triggered by a calendar event. Instead of someone clicking a button, the system executes the work itself at the time you specified. Common examples include nightly invoice generation, weekly pipeline reports, or a monthly data sync between systems.
Operators use scheduled tasks to offload repetitive work that has to happen on a clock. You define what runs, when it runs, and where the output goes — then the system handles execution and logs the result. Most business platforms include a task scheduler under their automation or admin settings, often visualized as a cron-style calendar or a simple recurrence picker.
Scheduled tasks differ from event-triggered automations, which fire when something happens (a form submission, a deal stage change). Scheduled tasks fire when the clock says so, regardless of upstream activity. Many workflows combine both — a scheduled task that checks for new records, then triggers downstream automations on what it finds.
Why It Matters
Scheduled tasks turn recurring manual work into background processes, which directly cuts labor cost and human error. A team that used to spend Monday mornings pulling reports gets those reports waiting in their inbox at 7am instead. Over a year, even small daily tasks add up to dozens of reclaimed hours per person.
When teams skip scheduled automation, work either gets done inconsistently or gets forgotten entirely. Reports go out late, follow-ups slip, data syncs drift, and someone eventually notices a billing discrepancy that's been compounding for weeks. Manual recurring work is also a single point of failure — when the person who runs it is out, nothing happens.
Examples in Practice
A 40-person agency schedules a task that pulls client billing data every Friday at 5pm, generates draft invoices, and routes them to account managers for review by Monday morning. The team eliminated four hours of weekly manual reconciliation and now closes the books two days earlier each month.
A SaaS support team sets a scheduled task to re-poll any ticket that's been in 'waiting on customer' status for seven days, automatically sending a check-in email and flagging the ticket for the agent. This stopped tickets from going stale and improved their resolution rate without adding headcount.
An e-commerce operator runs a nightly scheduled task that syncs inventory counts from the warehouse system into the storefront, deactivates listings for out-of-stock SKUs, and emails the merchandising lead a summary of changes. The task replaced a morning standup ritual that used to take 30 minutes daily.