Process Model with End Node and Terminate Process

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

  Discussion posts and replies are publicly visible

Parents
  • +1
    Certified Lead Developer

    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.

Reply
  • +1
    Certified Lead Developer

    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.

Children