An administrator at a clinical research organization needs to automate updates for a custom object named Clinical_Trial_Participant__c. Whenever a participant record is created or edited, if the Status__c field is changed to 'Screening Failed', the system must automatically populate the Deactivation_Date__c field with the current date and set the Eligible_for_Recheck__c checkbox to False on that same record before it is committed to the database. No external web callouts, email notifications, or updates to related records are required. Which flow trigger configuration should the administrator select to fulfill this requirement with optimal system performance?
- ARecord-Triggered Flow configured for Actions and Related Records (after the record is saved)
- Record-Triggered Flow configured for Fast Field Updates (before the record is saved)Cevap
- CSchedule-Triggered Flow configured to run daily across all participant records meeting the filter criteria
- DAutolaunched Flow with an Update Records element triggered by an active Approval Process initial submission action
Cevap
Record-Triggered Flow configured for Fast Field Updates (before the record is saved)
A Record-Triggered Flow optimized for Fast Field Updates runs before the record is saved to the database. This allows the flow to update fields on the triggering record directly in memory ($Record) without performing an explicit Update Records DML element, saving execution time and avoiding unnecessary recursive processing.
Adım Adım Çözüm
Anahtar Kavram
Selecting Fast Field Updates (before-save) vs. Actions and Related Records (after-save) in Record-Triggered Flows
Tahmini Süre:1m 15s