Skip to content

ABAP Keyword Documentation →  ABAP - Reference →  Data Interfaces and Communication Interfaces →  ABAP and XML →  Transformations for XML →  XSL Transformations 

Identity Transformation

ID is the identify transformation provided by SAP. Depending on the source and target, this may be handled in a special way by the runtime environment:

  • In an identity transformation from XML to XML, the result is a normalized copy of the source document, in which the attributes of an element are in alphabetical order.
  • An identity transformation from XML to ABAP transforms a canonical XML representation to ABAP data (explicit deserialization).
  • In the case of an identity transformation with JSON data as an XML source or an JSON writer as an XML target, a special type of handling is performed for JSON.

In each transformation from XML, the identity transformation validates the outbound data. If an XML element has multiple attributes with the same name, all of these attributes are ignored except one, which is given the value of the last identically named attribute (see this example). The identity transformation implicitly uses canonical XML formats (for all transformations apart from XML to XML) to display non-XML data (ABAP, JSON) in XML format. This is the reason why the identity transformation is used internally and can also be called explicitly, if the formats it generates are sufficient or need to be analyzed.

Other versions: 7.31 | 7.40 | 7.54


Notes

  • The identity transformation ID is not completely symmetrical. When text strings that contain only blanks are serialized, the result is a node with the same number of blanks. When nodes that contain only spaces (blanks, line breaks) are deserialized, however, an empty text is created.

  • The identity transformation ID exists as anXSLT program in the repository but it is not always executed as a program. When the identify transformation ID is called, an optimized ID engine of the runtime environment might be called, depending on the source and target. This ID engine generates the result described above.

  • If the predefined identity transformation ID is copied to a different XSLT program, the full scope of the target program cannot be used, since in this case no internal special handling takes place. A non-optimized copy of ID is executed in accordance with its source code as an XSL transformation on a DOM from the iXMLLibrary. More specifically, JSON data is not handled in the same way as with ID and usually raises an exception.

  • If the identity transformation ID is used, the way element names are written in XML or object names written in JSON cannot be modified. If XML data or JSON data is to be deserialized to ABAP data, however, the names of the corresponding elements or objects must be in uppercase letters. If this is not the case in the source data, either transformations must be created or the data modified in advance. The example Transformation of XML Element Names demonstrates how to modify XML data and the example JSON, Transform Names demonstrates this for JSON data.

Example

Identity transformation to the asXML format.


This translation does not reflect the current version of the documentation.

Continue

Identity Transformation to the asXML Format - Example