An administrator needs to automatically update the custom field 'Contract_Status__c' on a custom object record 'Vendor_Contract__c' when it is created, prior to the record being saved to the database. Which flow trigger option should the administrator choose for optimal execution performance?
- 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 Schedule-Triggered Flow scheduled to run every night
- DA Platform Event-Triggered Flow triggered upon contract creation
Answer
A Record-Triggered Flow configured for Fast Field Updates (Before-Save) is the correct choice because it updates fields on the triggering record before database commit without triggering additional DML operations.
Fast Field Updates (Before-Save) run directly before the record is saved to the database, making them significantly faster and highly efficient for updating fields on the record that launched the flow.
Step-by-Step Solution
Key Concept
Selecting optimal Record-Triggered Flow execution timing (Before-Save vs After-Save)