‎2009 Jul 03 9:33 AM
Hi, I have an XML into xstring, I've converted that xstring to string but now I have to convert my xml string to a text internal table or something similar to download as a file into my PC.
How can I do this?
‎2009 Jul 03 9:55 AM
Hello Marshal
You can use the methods of class CL_XML_DOCUMENT, e.g.:
PARSE_XSTRING: parses your XML stream into a DOM
EXPORT_TO_FILE: Generates File from XML (Download)
Regards
Uwe
‎2009 Jul 03 9:36 AM
Hi Marshal,
You can use Transformation for xml to internal table and then download it in text file.
Regards,
Vijay
‎2009 Jul 03 9:36 AM
Hi,
Check this FM to convert the string to internal table .RKD_WORD_WRAP
‎2009 Jul 03 9:55 AM
Hello Marshal
You can use the methods of class CL_XML_DOCUMENT, e.g.:
PARSE_XSTRING: parses your XML stream into a DOM
EXPORT_TO_FILE: Generates File from XML (Download)
Regards
Uwe
‎2009 Jul 03 10:00 AM