Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

List of the custom variables to use which will be used in a scripting environment. Variables are used to define and easy to easily update static values to use in for the rule validations, formulas etc.

...

Variable values can be overriden by tasks to update the value only in only a task scope. Example: $AllowPriceChange can be set to false in pool definition and can be set to true for administrative type tasks to disable on the rule validation.

Variables can also can be used in XPath expressions with the same syntax.

Code Block
titleVariable usage in xpath expression
var invalidExpenses = $Xml.SelectAll('ExpenseList/Expense[Amount > $ExpenseLimit]');

...