10

Which is the correct~er way in BPMN to represent a simple while loop that redirects to one task only?

enter image description here

GTMeteor
  • 807
  • 3
  • 9
  • 17

2 Answers2

8

I would say that using the loop activity is the better option as it helps keep the process model tidy.

Also be careful when creating loop in a process as usually task definition change between the first iteration and the second. e.g. first iteration is creation of a file, second will actually be an edition of the file: two different actions (create and edit) should not be in a single task definition.

Antoine Mottier
  • 1,185
  • 1
  • 8
  • 13
3

Normally, the BPMN represents activities marching through time in a linear fashion similar to a Value Stream Map. To create a backward loop would disrupt the timeline.

Ed W
  • 31
  • 1