Universal Containers requires an automated business process when a custom object record, Contract_Renewal__c, reaches the 'Approved' stage. The automation must immediately execute three tasks: create a new standard Opportunity record, post an update to the parent Account record's Chatter feed, and permanently remove temporary staging records associated with the contract renewal. An administrator intends to implement this automation using native Process Builder actions without writing code or calling secondary automation processes. Which limitation will prevent the administrator from fully implementing this requirement directly within Process Builder?
- Process Builder does not support native record deletion actions.Cevap
- BProcess Builder cannot create standard object records from a custom object trigger.
- CProcess Builder actions execute before validation rules, causing record deletion attempts to fail execution order checks.
- DProcess Builder cannot post Chatter feed updates to parent records without executing DML operations inside an explicit loop construct.
Cevap
Process Builder cannot natively delete records.
Process Builder supports many declarative immediate and scheduled actions such as creating records, updating related records, posting to Chatter, sending email alerts, invoking custom notifications, launching flows, and submitting records for approval. However, deleting records is not a native action type within Process Builder. To delete records, administrators must invoke an Autolaunched Flow or Apex code.
Adım Adım Çözüm
Anahtar Kavram
Process Builder Native Action Capabilities and Limitations