Immediate Action
An Immediate Action is the type of Workflow Rule action in Salesforce that fires as soon as the rule criteria evaluate to true, in the same transaction as the triggering DML.
Definition
An Immediate Action is the type of Workflow Rule action in Salesforce that fires as soon as the rule criteria evaluate to true, in the same transaction as the triggering DML. Immediate Actions sit on a Workflow Rule alongside Time-Dependent Actions, which delay until a future point. The two action types existed to give Workflow Rules the flexibility to handle both real-time updates (set a flag, send an email, update a field) and time-delayed escalations (warn the owner if no activity happens within 48 hours).
Workflow Rules are end-of-life. Salesforce announced their retirement in 2026; the Migrate to Flow tool converts existing Workflow Rules (including their Immediate Actions) to record-triggered flows. Modern record-triggered flows handle Immediate-Action equivalents in the standard flow logic, with no separate concept needed. The Immediate Action term remains relevant for orgs still running legacy Workflow Rules, for cert exam history, and for understanding Migrate to Flow output, but no new automation should be designed around it.
The Workflow Rule action model that Flow Builder replaced
How Immediate Actions ran in a Workflow Rule
A Workflow Rule fired on record creation or edit, evaluated its filter criteria, and ran any Immediate Actions configured on the rule. Common actions included Field Update (set a field value), Email Alert (send a templated email), Task (create a Salesforce Task), and Outbound Message (send a SOAP message to an external endpoint). All Immediate Actions ran in the same transaction as the triggering DML, with results visible before the user saw the post-save record.
Immediate vs. Time-Dependent Actions
Time-Dependent Actions were the same four action types but scheduled to fire at a future point (24 hours after rule fire, 7 days before Close Date, etc.). Salesforce stored them in a queue and processed them on the schedule. The pair (Immediate + Time-Dependent) covered both real-time and time-shifted automation patterns inside a single Workflow Rule.
Workflow Rule retirement timeline
Salesforce announced Workflow Rule end-of-life in 2026. Existing rules continue to function during the deprecation window, but no new rules can be created in Summer 25 and later. The Migrate to Flow tool moves Workflow Rules to record-triggered flows; Immediate Actions become elements before the Save Order event, Time-Dependent Actions become scheduled-path elements.
Migrate to Flow conversion semantics
Running Migrate to Flow on a Workflow Rule creates a flow that mirrors the rule''s structure. Each Immediate Action becomes a flow element (Update Records, Action, Send Email). The flow runs as a record-triggered flow with the same entry conditions. The conversion is automatic but lossy: complex Workflow formulas may not translate cleanly, and the migrated flow needs human review.
Where the term still appears
The Immediate Action concept appears in older training material, cert exam study guides, AppExchange package metadata, and managed-package Workflow Rules. Admins inheriting these orgs need to read the term as part of the legacy vocabulary even when designing modern flows. Migrate to Flow output documentation also retains the original Immediate Actions list for reference.
Field Update specifics
The most common Immediate Action was Field Update: the rule fires and sets a target field on the same record (or, in newer Salesforce releases, on a parent record). Field Updates from Workflow Rules ran before the standard save phase, which made them effectively pre-save in the order of execution. Flow Builder''s before-save record-triggered flow is the modern equivalent.
Email Alert specifics
Email Alerts under Workflow Rules sent a templated email to a defined recipient list. The Email Alert object itself persists in modern Salesforce and is still referenceable from flows via the Send Email Alert action. So Email Alerts survived the Workflow Rule retirement, even when the rules that called them did not.
Migrate Immediate Actions to a record-triggered flow
Run Migrate to Flow on existing Workflow Rules and review the output. Most rules convert cleanly; some need manual adjustments after the automated conversion.
- Inventory existing Workflow Rules
Setup, Workflow Rules. List every active rule, the object it''s on, and the Immediate Actions configured.
- Run Migrate to Flow
Setup, Migrate to Flow. Select the Workflow Rules to migrate. The tool generates a record-triggered flow per rule.
- Review the generated flow
Open each generated flow. Verify the Immediate Actions translated to the right flow elements. Check that entry conditions match the original rule criteria.
- Test in sandbox
Activate the new flow in sandbox, run test data that should trigger the rule, verify the flow produces the same outcome.
- Deactivate the original Workflow Rule
Once the flow is validated, deactivate the original Workflow Rule to prevent double-firing. Salesforce will eventually remove the rule entirely as part of the retirement.
- Deploy to production
Use Change Sets or DevOps Center to deploy the new flow. Coordinate cutover so the Workflow Rule deactivation and the flow activation happen in the same release.
- Migrate to Flow conversions are not always perfect. Complex Workflow formulas may produce flows that need manual cleanup.
- Both the Workflow Rule and the migrated flow can fire simultaneously during testing, doubling the actions. Deactivate the rule before activating the flow in production.
- Time-Dependent Actions become scheduled-path elements in the flow. The translation is direct but the timing semantics in flows are subtly different; verify in sandbox before production deployment.
- Email Alerts referenced by Workflow Rules survive the migration and can be called from flows via Send Email Alert actions.
Trust & references
Cross-checked against the following references.
- Immediate Actions on Workflow RulesSalesforce Help
- Migrate to FlowSalesforce Help
Straight from the source - Salesforce's reference material on Immediate Action.
- Workflow Rules ReferenceSalesforce Help
About the Author
Dipojjal Chakrabarti is a B2C Solution Architect with 29 Salesforce certifications and over 13 years in the Salesforce ecosystem. He runs salesforcedictionary.com to help admins, developers, architects, and cert/interview candidates sharpen their fundamentals. More about Dipojjal.
Test your knowledge
Q1. What is an Immediate Action?
Q2. Where do Immediate Actions appear?
Q3. Where should new immediate automation be built?
Discussion
Loading discussion…