Show TOC

Object documentationData Roots Locate this document in the navigation structure

 

 

To be able to access ABAP data, an ST program must contain at least one declaration of a data root outside a template. The data roots are the interfaces of the ST program to the ABAP data objects, which you specify in the statement CALL TRANSFORMATION as source or target fields. You declare data roots with:

<tt:root name="..." [[line-]type="..." [length="..."] [decimals="..."]] [...] />

A name must be assigned to the data root with the name attribute. It can be typed with the [line-]type attribute.

The data roots declared on the tt:transformation level form the context of the main template and can be addressed directly within it. The data roots are not recognized in subtemplates. However, they can be bound to the local data roots of subtemplates when these templates are called.

Note Note

An ST program without a data root describes a constant XML fragment that does not access ABAP data. In the CALL TRANSFORMATION statement, the syntax requires you to specify source or target fields. Data objects specified when ST programs are called without data roots are ignored during serialization and not changed during deserialization. The example for literal texts uses ST programs without data roots.

End of the note.
Data Root Name

Use the name attribute to declare a symbolic name, which can be bound to an ABAP data object. This binding is achieved by assigning these names as bni to data object ei during serialization or to fi during deserialization, in the CALL TRANSFORMATION statement (see ABAP keyword documentation).

The symbolic name is not case-sensitive and must be unique. The namespace also includes the parameters declared using tt:parameter and the variables declared using tt:variable. No data roots other than the ones specified here can be used in the CALL TRANSFORMATION statement.

Typing the Data Root

The data root can be typed with a data type using the attribute type or line-type of tt:root. Whereas type directly specifies the type, line-type means that it is an internal table of the named type.

For data roots without explicit typing, no checks are made until the transformation is executed. Explicit typing is used to check the ST program statically. Examples of invalid operations that can then be recognized by the compiler are:

  • Access to a nonexistent structure component

  • Loop through a non-tabular node

  • Handling a structured node as elementary

Elementary ABAP types, types from the Repository, and types of the same ST program that are defined with tt:type can be specified as the value of [line-]type. Type specifications are subject to the same restrictions as the tt:value statement.

Accessing a Data Root

Access to a data root is described under Addressing the Data Roots. Serializations and deserializations are subject to the general restriction that the content of a data root cannot be modified by serialization; only write access is possible to a data root during deserialization.

Example

Six data roots including typing are defined in the following transformation. Data root R1 has elementary ABAP type d (date), R2 has type "internal table with elementary line type i", R3 has type DSTRUCT from the ABAP Dictionary, R4 has the type ABCD_STRUCT from type group ABCD, and R5 is a table with type ABCSTRUCT that is defined in global class CL_ABC. The type of R6 is defined as the name STRUCT in the transformation itself.

Syntax Syntax

  1. ...
  2. <tt:transform xmlns:tt="http://www.sap.com/transformation-templates"
  3.               xmlns:ddic="http://www.sap.com/abapxml/types/dictionary"
  4.               xmlns:tp="http://www.sap.com/abapxml/types/type-pool/ABCD"
  5.               xmlns:cl="http://www.sap.com/abapxml/types/class-pool/CL_ABC"
  6.               xmlns:def="http://www.sap.com/abapxml/types/defined" >
  7.   <tt:type name="STRUCT">
  8.     <tt:node name="C1" type="I"/>
  9.     <tt:node name="C2" type="I"/>
  10.   </tt:type>
  11.   <tt:root name="R1" type="D"/>
  12.   <tt:root name="R2" line-type="I"/>
  13.   <tt:root name="R3" type="ddic:DSTRUCT"/>
  14.   <tt:root name="R4" type="tp:ABCDSTRUCT"/>
  15.   <tt:root name="R5" line-type="cl:ABCSTRUCT"/>
  16.   <tt:root name="R6" type="def:STRUCT"/>
  17. ...
End of the code.