An administrator at CloudData SaaS is designing automation for the custom object Subscription_Contract__c. The business requires the following two automated processes:
1. Whenever a Subscription_Contract__c record's status is changed to "Pending Renewal", the system must automatically calculate and update the Renewal_Discount__c field on that same triggering contract record prior to committing changes to the database.
2. Whenever a Subscription_Contract__c record's status is changed to "Renewed", the system must create a child Renewal_Notice__c record and execute an outbound callout notification to an external billing endpoint.
Which TWO flow trigger configurations should the administrator select to fulfill these requirements in accordance with Salesforce best practices? (Select TWO.)
- Configure a Record-Triggered Flow optimized for Fast Field Updates (Before-Save) to handle the same-record field update on Subscription_Contract__c.Answer
- Configure a Record-Triggered Flow set to Actions and Related Records (After-Save) to create the child Renewal_Notice__c record and initiate the external outbound callout.Answer
- CConfigure a single Before-Save Record-Triggered Flow to execute both the same-record field updates and the creation of the child Renewal_Notice__c record.
- DConfigure an After-Save Record-Triggered Flow for the same-record update and use an explicit Update Records element to write the new Renewal_Discount__c value to the triggering record.