An organization manages customer broadband activations using a custom object named Service_Activation__c. When a new activation record is created or updated, the system must automatically calculate and set the Provisioning_Tier__c and Expected_Completion_Date__c fields on that same record before it is committed to the database. No notifications, email alerts, or updates to parent account records are required. Which flow trigger configuration should the administrator select to fulfill this requirement with maximum performance?
- A Record-Triggered Flow configured for Fast Field Updates (before the record is saved)Answer
- BA Record-Triggered Flow configured for Actions and Related Records (after the record is saved)
- CAn Autolaunched Flow triggered immediately after standard validation rules and custom apex triggers execute
- DA Schedule-Triggered Flow configured to query and update all modified activation records in batches throughout the day
Answer
A Record-Triggered Flow configured for Fast Field Updates (before the record is saved)
Configuring a Record-Triggered Flow for Fast Field Updates runs before the record is written to the database. It allows direct assignment to fields on the triggering record ($Record) without issuing DML statements, providing substantially faster execution times and preventing redundant save procedures.
Step-by-Step Solution
Key Concept
Record-Triggered Flow trigger optimization (Fast Field Updates vs. Actions and Related Records)
Estimated Time:1m 0s