Start of Content Area

Background documentation Current Node  Locate the document in its SAP Library structure

Exactly one node of the tree structures of the current template can be set as the current node at any place within a simple transformation (statically and during program execution). The current node shades the data roots in the sense that a reference "name" does not refer to a root “name“, but to the component “name“ of the current node (see Addressing Subnodes). If the current node is defined, it is the implicit operand of many ST commands, but you can also address it explicitly using $ref.

This section shows how you can set the current node explicitly with [tt:]ref. In addition, the tt:loop statement for transforming internal tables also sets the current node.

 

Note

At positions at which the current node is not set explicitly, it is undefined and cannot be addressed using $ref. At these positions, the data roots are not shaded and you can address them with name“.

 

Setting the Current Node

The following options are available to set the current node explicitly:

 

By Command

The following ST command can be used to set the current node:

 

<tt:ref name=“node“>
  ...
</tt:ref>

 

The tt:ref command sets the current node to the node specified in node. Any addressable data node can be specified for node. If no valid node is specified, the current node is undefined (see above).

The tt:ref command can be nested. It builds a context in which the currently set node is valid. Outside the corresponding XML element, the current outermost node is still valid. On the top level, the current node is always undefined.

The command tt:ref iself has no operational effect, but only influences the impact of the commands nested within it.

Note

As a result of the addressing rules, only a subnode of the current node can be set as the new current node, unless you are setting a data root.

 

By Command Attribute

In many ST commands, the current node can be specified as an attribute, as indicated below:

 

<tt:instruction ref=“node“>
  ...

</tt:instruction>

 

In this context, instruction is an ST command that can contain the ref attribute. The same rules apply to node as when you set it with the tt:ref command. If no attribute ref is specified, the command applies for the current node of the context.

The currently set node is valid only within the context of the ST command.

 

By Attribute of a Literal XML Element

In the literal XML elements of a template, you can set the current node as follows:

 

<element ... tt:ref=“node“>
  ...
</element>

 

In the example, element is a literal XML element. The special attribute tt:ref (in the namespace of the ST commands) sets the current node. The same rules apply to node as when you set it with the tt:ref command.

The currently set node is valid only within the context of the XML element.

 

Example

The following ST program can be used to serialize a nested ABAP structure:

 

<tt:transform xmlns:tt="http://www.sap.com/transformation-templates">

  <tt:root name="ROOT"/>

  <tt:template>
    <X tt:ref="ROOT">
      <X1>
        <tt:value ref="COL1" />
      </X1>
      <X2>
        <tt:value ref="COL2" />
      </X2>
      <X3 tt:ref="STRUC2">
        <X1>
          <tt:value ref="COL1" />
        </X1>
        <X2>
          <tt:value ref="COL2" />
        </X2>
      </X3>
    </X>
  </tt:template>

</tt:transform>

 

The current node is changed as follows:

Also see the example for calling a transformation in the Structures section.

 

End of Content Area