I have a `Workflow A` that at the end triggers `Wo...
# general
e
I have a
Workflow A
that at the end triggers
Workflow B
. We need to keep active the last state of
Workflow A
and not exit the Workflow. But sometimes, before the end of
Workflow B
, we need to cancel the
Workflow B
and go back to the start of
Workflow A
. In those cases, we manually cancel the instance of
Workflow A
and manually cancel the instance of
Workflow B
. Question: Is there a way to click a single button and cancel both Workflows and start
Workflow A
again?
I'm open to a combination of scripting + workflow ideas. One option is to use
WAIT FOR WORKFLOW STATE
on
Workflow A
that is triggered by an action on
Workflow B
. But it needs a button on all of the (many) States of
Workflow B
.