Multiple choice technology web technology

If your Assignment shape uses the standard rule “Worklist”, and your Router uses the standard rule “ToWorkbasket”, what happens?

  1. The flow will not save

  2. The flow will be suspended

  3. The flow will save, but an execution Java exception will be raised

  4. The flow will be suspended, and control will be transferred to the FlowProblems flow

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

When an Assignment uses Worklist (which expects to assign to an individual worklist) but the Router uses ToWorkbasket (which routes to a workbasket), there's a routing mismatch. Pega saves the flow but raises a Java exception at runtime because the routing destination is incompatible - the flow cannot determine where to place the assignment.

AI explanation

Using "Worklist" as the Assignment shape's routing rule while the Router uses "ToWorkbasket" creates a mismatch in what the flow expects to happen at that point — the flow engine still saves fine, but at runtime this mismatched configuration triggers a Java exception during execution rather than a flow suspension. The flow rule itself is syntactically valid, so it saves without error; the problem only surfaces when it actually runs.