An administrator at a maritime cargo carrier is configuring automation for a custom object named Port_Inspection__c. Whenever a new inspection record is created or an existing record's inspection score is modified, the system must set the Inspection_Tier__c field on that same record before it is committed to the database. The requirement states that this update must execute with maximum performance and without consuming additional DML operations. Which flow trigger configuration should the administrator use?
- AA Record-Triggered Flow configured for Actions and Related Records
- A Record-Triggered Flow configured for Fast Field UpdatesAnswer
- CA Schedule-Triggered Flow that queries records and updates each record inside a loop
- DAn Autolaunched Flow initiated by an Approval Process initial submission action
Answer
A Record-Triggered Flow configured for Fast Field Updates
A Record-Triggered Flow configured for Fast Field Updates (before-save) runs before the record is saved to the database. It updates fields directly on the triggering record without requiring an Update Records element, resulting in faster execution and zero additional DML statement usage.
Step-by-Step Solution
Key Concept
Record-Triggered Flow trigger timing: Fast Field Updates (Before-Save) vs Actions and Related Records (After-Save)
Estimated Time:1m 15s