An administrator needs to implement an automated solution on a custom object named Vendor_Evaluation__c. Whenever a Vendor_Evaluation__c record is created or updated, the system must evaluate its numerical performance score and populate a Risk_Rating__c field on the triggering record before the record is saved to the database. The solution must maximize processing speed and avoid consuming extra DML statements within the execution transaction. Which flow trigger design should the administrator implement?
- A Record-Triggered Flow configured for Fast Field Updates (before-save) that updates the fields on the triggering record.Answer
- BA Record-Triggered Flow configured for Actions and Related Records (after-save) that uses an Update Records element on the triggering record.
- CA Schedule-Triggered Flow executing every hour to evaluate modified Vendor Evaluation records and perform bulk updates.
- DAn Autolaunchable Flow (No Trigger) called by a Process Builder process configured to execute after record creation and modification.
Answer
A Record-Triggered Flow configured for Fast Field Updates (before-save) that updates the fields on the triggering record.
Configuring a Record-Triggered Flow for Fast Field Updates (before-save) allows field values on the triggering record to be updated in memory before database commit. This approach optimizes performance and avoids extra DML statements.
Step-by-Step Solution
Key Concept
Fast Field Updates (Before-Save Record-Triggered Flows) for Same-Record Operations
Estimated Time:2m 0s