A business requirement specifies that whenever an Opportunity record is created or its stage is modified, the custom field Target_Fulfillment_Date__c on that same Opportunity record must be calculated and populated immediately. The solution must provide optimal system performance by avoiding additional DML operations and unnecessary recursive save cycles.
Which automation design should be implemented to meet this requirement?
- AA Record-Triggered Flow configured for Actions and Related Records with an Update Records element targeting the triggering Opportunity record
- A Record-Triggered Flow configured for Fast Field Updates on record creation and updateCevap
- CA Record-Triggered Flow configured with an Asynchronous Path to calculate and commit the date field in a separate transaction
- DA Schedule-Triggered Flow executing at scheduled intervals to query and process recently modified Opportunity records in batches
Cevap
A Record-Triggered Flow configured for Fast Field Updates on record creation and update
A Record-Triggered Flow configured for Fast Field Updates (before-save) executes before the record is saved to the database. It updates fields directly on the triggering record via assignment without needing an Update Records data element, preventing additional DML operations, recursion, and governor limit overhead.
Adım Adım Çözüm
Anahtar Kavram
Fast Field Updates (Before-Save) in Record-Triggered Flows
Tahmini Süre:1m 0s