Hello,
I have used simple transformation to generate the the xml file but once that file is generated but i could not locate it on server.
I have internal table containing XML file content.
But when I am uploading it on application server, it is appearing in single line not like below:
<?xml version="1.0" encoding="utf-8"?><Envelope version="01.00"><Sender><Id>ABCDEF</Id><Credential>123</Credential></Sender>
in single line.
But it should appear as follow:
<?xml version="1.0" encoding="utf-8" ?>
- <Envelope version="01.00">
- <Sender>
<Id>ABCDEF</Id>
<Credential>123</Credential>
</Sender>
- <Recipient>
<Id />
I tried to SPLI it at '>' but still not getting as expected.
Please let me know.
Regards,
saurabh