Skip to main content
July 4, 2025
Solved

Process Model with End Node and Terminate Process

  • July 4, 2025
  • 2 replies
  • 0 views

What is the difference between process model with End Node and process model with End Node and Terminate Process?

Best answer by shubhama926776

End Node: Ends only the current execution path, other parallel paths continue running(The process completes normally, allowing any active tasks/sub-processes to finish).
End Node + Terminate Process: Immediately stops the entire process instance and all active execution paths(Forces an immediate stop, killing all active tasks/sub-processes).
Use regular End Node for normal completion, use Terminate Process when you need to forcibly stop everything immediately.

2 replies

shubhama926776
July 4, 2025

End Node: Ends only the current execution path, other parallel paths continue running(The process completes normally, allowing any active tasks/sub-processes to finish).
End Node + Terminate Process: Immediately stops the entire process instance and all active execution paths(Forces an immediate stop, killing all active tasks/sub-processes).
Use regular End Node for normal completion, use Terminate Process when you need to forcibly stop everything immediately.

July 4, 2025

Thank you [mention:9861aef97eb2483a8b76175d9eda1e37:e9ed411860ed4f2ba0265705b8793d05]