Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • The workflow executes an initial job1 and makes use of a Prompt Instruction to request confirmation to continue.
    • The prompt message can be added as a string.
    • In addition, the message can include variables that are available from the workflow, the order or from JS7 - Job Resources like this:
      • 'job completed with return code value: ' ++ $returnCode ++ ', please confirm the order to be continued'
      • When using text and variables then text is put in single quotes and is concatenated by use of the ++ operator, see JS7 - Expressions for Variables.
      • $returnCode is a built-in variable, in addition any variables accessible to workflow instructions can be used.
  • If the confirmation is provided then the order continues and executes job2.

...