An organization uses a custom object named Partner Deal Registration to track deal submissions from channel partners. When a Partner Deal Registration record is updated to a status of 'Submitted', a Salesforce Administrator needs to evaluate the submitted estimated revenue and automatically update a field named Priority Tier on the same triggering record before it is committed to the database. The solution must provide optimal system performance and adhere to Salesforce automation best practices. Which automation tool and configuration should the administrator select?
- A Record-Triggered Flow configured for Fast Field Updates (Before-Save).Answer
- BA Record-Triggered Flow configured for Actions and Related Records (After-Save).
- CA Roll-Up Summary Field defined on the Account object that references the Lookup relationship to Partner Deal Registration.
- DA legacy Workflow Rule configured with an immediate Field Update action.
Answer
A Record-Triggered Flow configured for Fast Field Updates (Before-Save).
Configuring a Record-Triggered Flow for Fast Field Updates (Before-Save) is the optimal choice for same-record updates. Because it fires before the record is saved to the database, Salesforce updates the fields directly on the triggering record without executing an additional DML update command or re-entering the order of execution.
Step-by-Step Solution
Key Concept
Automation Tool Selection - Fast Field Updates (Before-Save Flow)