Use this notation... | To... | |
variableName | Reference a variable in the current scope. For example: shipNum. | |
../variableName | Reference a variable one or more levels above the current scope. For example: | |
../oNum | One level above | |
../ ../oNum | Two levels above | |
/variableName | Reference a variable in the initial scope. For example: /oNum. | |
recName/variableName | Reference a variable within a specific document. For example: | |
buyerInfo/state | Selects the state element from the document buyerInfo in the current scope | |
../buyerInfo/oNum | Selects the state element from the document buyerInfo one level above current scope |