In Business Process Management Notation (BPMN), looping is an attribute of an Activity. Any activity (task or subprocess) can be configured to either: not loop; loop in standard mode (‘while’ or ‘do until’ loops); or, support multiple instances (‘for each’ looping).
This is used to test the condition before the activity is run:
WHILE (condition and Loop Counter < Maximum Loops)
Perform Activity
Note: The Loop Counter is used internally. It starts at zero and increments by one on each iteration.
This is used to test the condition after the activity is run:
DO
Perform Activity
UNTIL (condition and Loop Counter >= Maximum Loops)
Tags: activity, bpel, bpmn, business process, do until loop, loop counter, loops, multiple instances, process, sub processes, task, while loop
No tags for this item
Both comments and pings are currently closed.
Multiple instances in BPMN Flashcard of multiple instances (sequential and parallel processing)
An Activity in business process modeling Flashcard of an Activity in business process modeling
Animating the business process A journey into engineering the business process
Events in BPMN Flashcard of events in business process modeling
Sequence flow in BPMN Flashcard of sequence flow in business process modeling