Table of Contents

Condition element

Specifies a condition that must be met in order for the action to execute.

Type

string

Parent

Action

Remarks

  • The condition can be specified in a CDATA tag.
  • Feature introduced in DataMiner 7.5.4.3.
  • Refer to Conditions for more information about conditions.

Examples

If you specify the following, the action will be executed when the value of parameter ID 500 is equal to “Active”.

<Condition>id:500 == "Active"</Condition>

As another example, if you specify the following, the action will be executed when the value of parameter ID 5 is equal to 1.

<Condition><![CDATA[(id:5 == 1)]]></Condition>