SAP ABAP XML TRAFOS



Get Example source ABAP code based on a different SAP table
  



ABAP_XML - Transformations
The AS ABAP kernel contains processors for the following transformations:
XSL Transformations
Simple Transformations
Appropriate transformation programs can be created in the ABAP repository and called using the following statement:
CALL TRANSFORMATION
The possible transformations fulfill the following purposes:
XSL transformations transform XML to XML.
Simple transformations serialize ABAP data to XML and deserialize XML data to ABAP.
To also access ABAP data using XSL transformations, the asXML format can be used as an intermediate format, which defines a mapping between ABAP data and XML:
asXML - Canonical XML Representation
The source and target of these transformations can be ABAP data objects, XML data in strings, or internal tables or objects from class libraries for XML.
VX_EXA_ONLY



Example ABAP Coding

The transaction Standard SAP Help forEMO demonstrates various transformations from ABAP data to XML and JSON.
ABAP_EXAMPLE_END