Subject: Abap to XML
hi.
i try to use the command CALL TRANSFORMATION id in order to move abap data to XML file.
the XML file had been created without the data.
please advise me.
here is some of the code:
g_ixml = cl_ixml=>create( ).
g_stream_factory = g_ixml->create_stream_factory( ).
ABAP to XML
REFRESH restab.
resstream =
g_stream_factory->create_ostream_itable
( table = restab ).
CALL TRANSFORMATION id
SOURCE source = reserch_details_tbl
RESULT XML resstream.
hi ronan.
the coding seems to be correct. But what's the type of RESTAB? Only "flat" tables are supported, tables of STRING or tables of XSTRING are not supported.
Add a comment