An organization tracks charitable funding requests using a custom object named Grant_Application__c. A business requirement states that whenever a Grant_Application__c record is created or edited with a Requested_Amount__c exceeding $100,000, the Review_Tier__c picklist field on that same record must automatically be set to 'Executive Review' before the record is saved to the database. No external callouts, notifications, or updates to related records are required. Which flow configuration should the administrator choose to fulfill this requirement with optimal performance?
- ARecord-Triggered Flow configured for Actions and Related Records with an Update Records element
- Record-Triggered Flow configured for Fast Field Updates running before the record is savedCevap
- CSchedule-Triggered Flow configured to evaluate and update modified Grant Application records in a nightly batch
- DAutolaunched Flow with an asynchronous trigger path to bypass database locks
Cevap
Record-Triggered Flow configured for Fast Field Updates running before the record is saved
A Record-Triggered Flow optimized for Fast Field Updates runs before the record is saved to the database. It updates field values directly on the $Record global variable in memory prior to the database commit, resulting in maximum performance and avoiding extra DML operations and recursion.
Adım Adım Çözüm
Anahtar Kavram
Record-Triggered Flow Optimization (Fast Field Updates vs. Actions and Related Records)
Tahmini Süre:1m 15s