The simplest way is to convert your data first into an internal table with fields for name, address, salary etc.
Then use:
DATA my_output_xml TYPE string.
CALL TRANSFORMATION id RESULT xml my_output_xml SOURCE data = internal_table.
The simplest way is to convert your data first into an internal table with fields for name, address, salary etc.
Then use:
DATA my_output_xml TYPE string.
CALL TRANSFORMATION id RESULT xml my_output_xml SOURCE data = internal_table.