Informatica ActiveVOS
- Informatica ActiveVOS 9.2.4.6
- All Products
Required Properties
| Optional Properties
|
---|---|
If Condition
| Name. See
Selecting Activity Labels
|
Join Condition. See
Creating a Join Condition for an Incoming Link
| |
Suppress Join Failure. See
Process Properties
| |
Comment. See
Adding Comments to a Process
| |
Documentation. See
Adding Documentation to a Process
| |
See
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 .
|
<if standard-attributes> standard-elements <condition expressionlanguage="anyURI"?> bool-expr </condition> activity <elseif>* <condition expressionlanguage="anyURI"?> bool-expr </condition> activity </elseif> <else>? activity </else> </if>
<if xmlns:inventory="http://supply-chain.org/inventory" xmlns:FLT="http://example.com/faults"> <condition> bpel:getVariableProperty('stockResult', 'inventory:level') > 100 </condition> <flow> <!-- perform fulfillment work --> </flow> <elseif> <condition> <bpel:getVariableProperty('stockResult', 'inventory:level') >= 0 </condition> <throw faultName="FLT:OutOfStock" variable="RestockEstimate" /> </elseif> <else> <throw faultName="FLT:ItemDiscontinued" /> </else> </if>