SAP ST TT SERIALIZE DESERIALIZE



Get Example source ABAP code based on a different SAP table
  


• serialize ABAP_ST_ELEMENT
• deserialize ABAP_ST_ELEMENT

ABAP_ST - tt:serialize, tt:deserialize, TransformationDirection

ABAP_SYNTAX
< tt:serialize>
...
< /tt:serialize>

< tt:deserialize>
...
< /tt:deserialize>

What does it do?
These ST statements can be used to limit parts of templates for execution in serializations or deserializations:
All template elements specified within the tt:serialize element are only respected in serializations. All the template elements specified within the tt:deserialize element are only respected in deserializations.

ABAP_EXAMPLE_VX5
The following Simple Transformation DEMO_ST_SERIALIZE_DESERIALIZE serializes a structure and deserializes to an internal table:
TRNS DEMO_ST_SERIALIZE_DESERIALIZE
The following ABAP program can call the transformation:
ABEXA 01716
After deserialization, the internal table contains three lines with the values of the structure components.
ABAP_EXAMPLE_END