Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

CALL TRANSFORMATIOn

Former Member
0 Likes
573

In which cases can the ABAP statement CALL TRANSFORMATION be used? the options are

- To transform as iXML document object into and ABAP data structure using

XSLT.

- To transform an XML document contained in a string into another XML

Document using and XSLT program.

- To get canonic XML display of an ABAP data structure.

- To transform an XML document contained in an xstring into another XLM

document using an ST program (Simple Transformation).

- To transform and ABAP data structure into an SML document using ST.

whats the correct answer??

In which cases can the ABAP statement CALL TRANSFORMATION be used? the options are

- To transform as iXML document object into and ABAP data structure using

XSLT.

- To transform an XML document contained in a string into another XML

Document using and XSLT program.

- To get canonic XML display of an ABAP data structure.

- To transform an XML document contained in an xstring into another XLM

document using an ST program (Simple Transformation).

- To transform and ABAP data structure into an SML document using ST.

whats the correct answer??

2 REPLIES 2
Read only

former_member156446
Active Contributor
0 Likes
418

To transform and ABAP data structure into an SML document using ST.

Read only

GrahamRobbo
SAP Mentor
SAP Mentor
0 Likes
418

Hi Angie,

actually I think they are all correct.

Quoting from SAP online help....

...calls the specified XSL transformation (XSLT) or a simple transformation (ST, as of release 6.40).
The source of the transformation is specified after SOURCE and the result is stored as specified after
RESULT. Use PARAMETERS and OBJECTS to pass parameters to the transformation.

Possible transformation types are: 
  from XML to XML (only for XSLT), 
  from XML to ABAP (for XSLT and simple transformations), 
  from ABAP to XML (for XSLT and simple transformations), 
  from ABAP to ABAP (only for XSLT),

Cheers

Graham Robbo