Question

Difficulty: MediumAutomation Tool Selection

A system administrator at a financial services firm needs to automate a business process on the Account object. Whenever an Account record is created or updated and its Annual Revenue exceeds $5,000,000, a custom checkbox field named 'VIP Account' on the triggering Account record must be set to true immediately before the record is committed to the database. No related records need to be modified, and no external integrations or email notifications are required. Which declarative automation tool and configuration should the administrator select to fulfill this requirement efficiently?

  1. A Record-Triggered Flow configured for Fast Field Updates (Before-Save)Answer
  2. B
    A Record-Triggered Flow configured for Actions and Related Records (After-Save)
  3. C
    A Roll-Up Summary field configured on the Account object
  4. D
    An Approval Process with an entry criterion evaluating Annual Revenue

Answer

Configure a Record-Triggered Flow optimized for Fast Field Updates (Before-Save).
A Record-Triggered Flow configured for Fast Field Updates (Before-Save) is the recommended declarative option for same-record updates. It updates field values on the triggering record before it is saved to the database, executing up to 10 times faster than an After-Save flow without initiating extra DML statements.

Step-by-Step Solution

1
Analyze the automation requirement
The requirement involves updating a field on the record that triggers the automation (same-record update) prior to database save.
Determining the target record and trigger timing guides tool and optimization selection.
2
Evaluate available declarative automation options
Fast Field Updates (Before-Save Record-Triggered Flow) execute significantly faster than after-save flows because they modify the record before it is committed, avoiding extra DML operations and system re-execution.
Salesforce best practice mandates using Before-Save flows for same-record updates.

Key Concept

Automation Tool Selection: Fast Field Updates (Before-Save Record-Triggered Flow)
Rate this question