Universal Containers’ app builder has been tasked with replacing workflow rules and Apex
triggers with Process Builders where possible.
What are two important considerations an app builder should know before the project is
started?
(Choose 2 answers)
A. Avoid generating infinite loops.
B. Apex has a different SOQL query limit than Flow.
C. Create a process for each workflow rule.
D. Combine actions when possible
A. Avoid generating infinite loops.
D. Combine actions when possible
Explanation:
Before replacing workflow rules and Apex triggers with Process Builders, the app builder
should consider avoiding generating infinite loops and combining actions when possible.
Infinite loops can occur when a process updates a record that causes another process to
run on the same record, and so on. Combining actions can reduce the number of
processes and improve performance and maintainability.