Decision0
.
The second decision is Decision1
, and
so on.
<
, =
, ==
,
or >
).
=
and ==
operators
are evaluated in an identical manner.
&&
, ||
, !
)
of some set of comparisons.
+
, -
, *
, /
,
or %
. Arithmetic expressions can also contain
functions, integers, floating point numbers, and data objects.
Otherwise
can
be assigned. Use this value to designate the logical path that should
be traversed when all defined expressions evaluate to false. In summary,
the Otherwise
path represents the default
execution path when none of the expression values are true.
Yes
path
corresponds to a value exceeding the threshold and No
,
where the order total is below the threshold, is approved automatically.
Expression
|
Resulting Action
|
---|---|
Order Total <= 500
|
Automated approval
|
Order Total > 500
|
Requires Manager approval
|
Workflow Pattern
|
Workflow Element
|
Description
|
---|---|---|
Sequence
|
Sequence Flow (Connection)
|
Simple sequence where the subsequent task is triggered after the current task preceding
it is competed.
|
Exclusive Choice
|
Decision Gateway or
unique Status values
|
Alternate paths where
only one is taken (logical XOR).
|
Inclusive Choice
|
Decision Gateway
|
Alternate paths where
more than one might be taken, but not necessarily all paths (logical
OR).
|
Parallel
|
Merge/Fork Gateway
|
Parallel structure where
all paths are executed concurrently (logical AND).
|
Workflow Pattern
|
Workflow Element
|
Description
|
---|---|---|
Exclusive Merge
|
OR Logic Gateway
|
Merging of alternate
paths where only the first input is used to trigger the converged
path.
Single execution (logical
XOR)
|
Inclusive Merge
|
No gateway
|
Merging of alternate
paths where each input is used to trigger the converged path.
Multiple executions
with no synchronization (logical OR)
|
Join
|
Merge/Fork Gateway
AND Logic Gateway
|
Parallel structure where
all inputs are required before proceeding on converged path.
Complete synchronization
(logical AND)
|