Salesforce Certified Platform App Builder — Question 110
The case handling process at Universal Containers includes multiple steps including approvals, notifications, and fields updates. To manage and evaluate all of these changes in a single save operation, an app builder wants to use Process Builder and the Advanced option to let the process evaluate a record multiple times has been selected.
What option should the App Builder avoid to prevent recursion?
Answer options
- A. The ISCHANGED function
- B. Invocable processes
- C. IF statements
- D. Setting a criteria node to No criteria-just execute the procedure
Correct answer: D
Explanation
Choosing 'Setting a criteria node to No criteria-just execute the procedure' allows the process to run every time the record is saved, which can lead to infinite loops or recursion. The other options, like the ISCHANGED function, are designed to check for changes before executing actions, thereby preventing recursion effectively.