An administrator at CloudScale Enterprise is designing an automation strategy for the custom object Patient_Onboarding_Case__c when a record status changes to 'Pending Inspection'. The automation must meet two distinct requirements:
1. Automatically calculate and set the Internal_Priority_Score__c and Audit_Status__c fields on the triggering Patient_Onboarding_Case__c record without incurring additional DML database write transactions.
2. Automatically create a child Compliance_Audit__c record and dispatch an automated email alert to the risk management team after the case changes take effect.
Which two flow trigger design choices should the administrator implement to meet these requirements efficiently while adhering to Salesforce performance best practices? (Select two.)
- Configure a Record-Triggered Flow optimized for Fast Field Updates (before-save) to set the Internal_Priority_Score__c and Audit_Status__c fields directly on the triggering record.Cevap
- Configure a Record-Triggered Flow optimized for Actions and Related Records (after-save) to execute the creation of the child Compliance_Audit__c record and send the email notification.Cevap
- CConfigure a single Record-Triggered Flow optimized for Actions and Related Records (after-save) to update the fields on the triggering record using an explicit Update Records element before creating the child record.
- DConfigure an Autolaunchable Flow containing a loop element to query existing records, calculate the priority score, and update the triggering record sequentially.