Table of Contents

Search

  1. Preface
  2. Part 1: Using Process Developer
  3. Part 2: Creating and Modifying Processes
  4. Part 3: Functions, Events, Errors, and Correlation
  5. Part 4: Testing and Deployment
  6. Part 5: Process Central and Process Server (On-Premises)

Process Developer

Process Developer

While

While

BPMN Implementation: Loop
The While activity executes an activity repeatedly until its condition evaluates to false.
In contrast to the Repeat Until activity, the Qhile loop may not execute the contained activity at all.
Required Properties
Optional Properties
Condition
Suppress Join Failure. See Process Properties
Extension Attributes and Extension Elements. See Declaring Extension Elements and Attributes.
To build a While:
  1. From the
    Control Flow
    palette, drag a
    Loop
    activity to the Process Editor canvas.
  2. Double-click the Qhile to open the Condition Builder. For details, see Using the Expression Builder.
  3. Drag an activity, such as a Scope or Invoke, inside the While.
  4. Specify all the properties for each activity in the while.
XML Syntax
<while standard-attributes> <condition expressionLanguage="anyURI"?> bool-expr </condition> standard-elements activity </while>
Example:
<while> <condition> $orderDetails > 100 </condition> <scope> ... </scope> </while>

0 COMMENTS

We’d like to hear from you!