ABAP Keyword Documentation →  ABAP − Short Reference → 

CALL TRANSFORMATION - Short Reference

Reference

Syntax

CALL TRANSFORMATION {trans|(name)}
                    [PARAMETERS {p1 = e1 p2 = e2 ...}|(ptab)]
                    [OBJECTS    {o1 = e1 o2 = e2 ...}|(otab)]
                   [OPTIONS    {a1 = e1 a2 = e2 ...}]
                    SOURCE {XML src_xml}
                         | {{bn1 = e1 bn2 = e2 ...}|(stab)}

                    RESULT {XML rslt_xml}
                         | { {bn1 = f1 bn2 = f2 ...}|(rtab)
                             [AREA HANDLE handle] }.


Effect

Calls an XSL transformation or simple transformation specified statically in trans or specified dynamically in name. The call of the predefined transformation identity transformation ID serializes ABAP data into the asXML format.

Additions