Versionen im Vergleich

Schlüssel

  • Diese Zeile wurde hinzugefügt.
  • Diese Zeile wurde entfernt.
  • Formatierung wurde geändert.

...

As an example. If you want to calculate a price like this:
nodeValue("/purchaseOrder/item/quantity") * nodeValue("/purchaseOrder/item/price")


You may use the following syntax after you have defined two global variables:
quantity * price


To define a variable you need to specify the following:

ParameterDescriptionExample
xpathXPath to address a node or a node list./purchaseOrder/item/quantity
/item//*
//quantity
nameDefines the name and its value holder (optional).
If no name is defined, the node tag name will be taken.
If just (withoud value holder name) a name is defined, the value is the direct child value of the target node (specified in xpath).
If a name and a value holder is defined, the name and the value holder name must be an existing direct child of the target node (specified in xpath).


myName
myName,myValue
namePrefix  
isDynamic