What is the difference between using the Call and Branch methods in an activity step to invoke other activities?
What is the difference between using the Call and Branch methods in an activity step to invoke other activities?
Call returns to the originating activity after executing, allowing the original activity to continue its process. Branch, on the other hand, replaces the control flow, skipping the remainder of the original activity once the branched activity is complete.
The answer is D
D. Academy says: Call - Pega runs the specified activity then returns control to the calling activity when the called activity process finishes. Branch - Pega runs the specified activity, but instead, control returns to the rule that called the first activity. The original activity ends when the branched activity is complete.