What is the difference between End Step and Stop Step in Workflow?

Purpose:

Stop steps are used to raise an error to User and terminate workflow process.
End Step is used to mark the end of workflow.

Mandatory:

It is necessary to have one End step in workflow
It is not necessary to have Stop step in workflow

Arguments:

End step cannot have input arguments
Stop set cannot have output arguments

Workflow Status:

Stop step sets the status of workflow as “In Error”
End step sets the status of workflow as “Completed”

Related Questions

neel tagged this post with: Read 39 articles by
  • TJ

    Stop step can also be used to throw an error to an outer workflow.
    I was actually looking for way of doing that … i think this will work….

  • Example

    hi