A financial services organization requires automation for a custom object named Vendor_Invoice__c. The organization has defined two distinct processing needs:
1. Immediately upon the creation of an invoice record, populate the Tax_Rate__c and Payment_Terms__c fields on the triggering record before database commit.
2. Every Sunday at midnight, evaluate all existing invoice records with a status of 'Pending Approval' that have remained unapproved for more than 14 days and dispatch a summary notification to the finance team.
Which two automation configurations should the administrator implement to fulfill these requirements? (Choose two.)
- Deploy a Record-Triggered Flow set to Fast Field Updates (before-save) on record creation to populate fields directly on the triggering invoice record.Answer
- Implement a Schedule-Triggered Flow set to a weekly cadence with filter conditions to evaluate stagnant invoices and send notifications.Answer
- CDeploy a Record-Triggered Flow set to Actions and Related Records (after-save) with an explicit Update Records element targeting the triggering record.
- DConstruct an Autolaunched Flow with a loop structure executing individual database queries and update operations on each invoice iteration.
Answer
Deploying a Record-Triggered Flow configured for Fast Field Updates (before-save) on record creation, along with implementing a Schedule-Triggered Flow running on a weekly schedule to evaluate records and send notifications.
For the first requirement, a Record-Triggered Flow configured for Fast Field Updates (before-save) is optimal because it modifies fields on the triggering record before the record is saved to the database, eliminating the need for an extra DML statement. For the second requirement, a Schedule-Triggered Flow configured with a weekly schedule on Sunday evaluates qualifying records in batches and executes the notification action without manual intervention.
Step-by-Step Solution
Key Concept
Selecting appropriate Flow types (Record-Triggered Fast Field Updates vs. Schedule-Triggered Flows) based on trigger timing and business operational requirements.
Estimated Time:1m 30s