Hi Gurus
Can you please let me know the easiest way to ADD Carriage return or line feed at the end of XML file. Please, review example below in red.
I did come across this article:
However, does this UDF have to added to each field or the root node was unclear to me.
Interface Pattern:
ECC (ABAP Proxy) -> PI (Maps to XSD) -> .xml File placed on FTP server.
Please, let me know the best possible way to implement this.
Also, is there anything which can be done on the Proxy side in ECC itself.
Thank you so much,
Ritu
Example:
- Current Output file:
<?xml version="1.0" encoding="ISO-8859-1" ?><note><to>Tove</to><from>Jani</from><heading>Reminder</heading><body>Don't forget me this weekend!</body></note>
- Output we want:
<?xml version="1.0" encoding="ISO-8859-1" ?>
<note>
<to>Tove</to>
<from>
Jani</from>
<heading>
Reminder</heading>
<body>
Don't forget me this weekend!</body>
</note>