Informatica ActiveVOS
- Informatica ActiveVOS 9.2.4.6
- All Products
Required Properties
| Optional Properties
|
---|---|
none
| Name. See
Selecting Activity Labels
|
Join Condition.
| |
Suppress Join Failure. See
Process Properties
| |
Comment. See
Adding Comments to a Process
| |
Documentation. See
Adding Documentation to a Process
| |
Setting Visual Properties and Using Your Own Library of Images
| |
Execution State. See
Viewing the Execution State of an Activity or Link
| |
Extension Attributes and Extension Elements. See
Declaring Extension Elements and Attributes .
| |
BPMN Terminate. If set to Yes (the default), stops execution out to the nearest scope, while loop or for-each loop, whichever comes first. Repeat-until loops are skipped, since they are not represented with a boundary (like a scope) and BPMN terminate does not see it as a loop. The scope or loop is considered to have completed successfully (same as throwing a fault and then catching it).
If set to No, breaks out of loops (while, for Each and repeat until), but not scopes.
|
<break standard-attributes> standard-elements </break>
<while> <targets><target linkName="Link2"/></targets> <sources><source linkName="Link5"/></sources> <condition>($counter < 5)</condition> <flow> <links> <link name="Link5"/> </links> <if> <sources><source linkName="Link5"/></sources> <condition>($counter = 3)</condition> <extensionActivity> ext:break name="Break"/> </extensionActivity> </if> <assign> <targets><target linkName="Link5"/></targets> <copy> <from>($counter + 1)</from> <to variable="counter"/> </copy> </assign> </flow> </while>