Application Development 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: 

How to generate XML file

suman_lakkimsetty2
Participant
0 Kudos

hi frds

how to generate a XML file from a internal table.

2 REPLIES 2

uwe_schieferstein
Active Contributor
0 Kudos

Hello Suman

This is quite simple:

DATA: gd_xml_data    TYPE string.

 CALL TRANSFORMATION id_ident
   SOURCE itab = gt_itab
   RESULT gd_xml_data.

Regards

Uwe

former_member182354
Contributor
0 Kudos

Hi Suman,

Please use function module 'SDIXML_DOM_TO_XML' for yoyr requirement.

Raghav