An administrator needs to automatically update a custom status field on all related Contact records whenever an Account's status changes to 'Inactive'. Which capability of Process Builder allows the administrator to accomplish this requirement without custom code?
- Executing an Update Records action that specifies child records related to the AccountAnswer
- BCreating a Roll-Up Summary field to automatically push updates down to child Contact records
- CConfiguring an immediate action to only update the triggering Account record, requiring Apex for child records
- DCalling an Apex class in a loop to query and update child records to avoid governor limits
Answer
Process Builder allows administrators to configure an Update Records action that directly updates related child records (such as Contacts related to an Account) without writing Apex code.
Process Builder includes built-in declarative capabilities to create an 'Update Records' action that selects records related to the record that started the process, allowing seamless updates to child records such as Contacts on an Account.
Step-by-Step Solution
Key Concept
Process Builder Cross-Object Child Record Updates