Salesforce Dictionary — Free Salesforce GlossarySalesforce Dictionary

Autolaunched Flow

Automation🟢 Beginner

Definition

An Autolaunched Flow in Salesforce is a type of Flow that runs in the background without any user interaction. It does not have screens and is triggered automatically by another process, such as a record change (Record-Triggered Flow), a platform event, a schedule, or an Apex invocation. Autolaunched Flows are used to automate business logic like field updates, record creation, and callouts without requiring user input.

Real-World Example

When an admin at Cascade Logistics needs to streamline operations, they turn to Autolaunched Flow to eliminate repetitive manual tasks that were consuming hours of the team's time each week. After building and activating Autolaunched Flow, routine processes now execute automatically, freeing up staff to focus on higher-value work. Error rates drop by 40% in the first month.

Why Autolaunched Flow Matters

Autolaunched Flow is the Flow type used for background automation that doesn't require user interaction. Unlike Screen Flows, which display screens to users, Autolaunched Flows have no UI and are invoked by some other mechanism: a Record-Triggered Flow fires on record create or update, a Scheduled Flow fires on a schedule, a Platform Event-triggered Flow fires when a platform event publishes, or an Autolaunched Flow can be called from Apex, another Flow, or even as an action on a button.

Autolaunched Flows are the modern replacement for Workflow Rules and Process Builder, which are being retired. They're more powerful than their predecessors because they support loops, collections, custom logic, error handling, and integration with external services through HTTP Callout. Building solid Autolaunched Flows is now a core skill for Salesforce admins, and understanding how they interact with triggers, governor limits, and recursion is the difference between a stable org and a brittle one.

How Organizations Use Autolaunched Flow

  • Cascade LogisticsBuilt a Record-Triggered Autolaunched Flow on their Order object that automatically creates a Shipment record when an Order moves to Shipped status. This eliminated a manual step that used to be missed about 10% of the time.
  • FreshStart Inc.Uses a Scheduled Autolaunched Flow that runs nightly to clean up Opportunities that have been stuck in an open stage past their close date. The Flow sends a reminder email to the owner and logs a task for follow-up.
  • NovaScaleReplaced all of their legacy Process Builder processes with Autolaunched Flows as part of a modernization project. The Flows are easier to maintain, support better error handling, and will continue to work as Salesforce retires the older automation tools.

🧠 Test Your Knowledge

1. What distinguishes an Autolaunched Flow from a Screen Flow?

2. Which of these can trigger an Autolaunched Flow?

3. What are Autolaunched Flows the modern replacement for?

See something that could be improved?

Suggest an Edit