Hi everyone, I have a file to file scenario in which I receive an XML like this:
<MT_IDOCS>
<IDOCS>
<IDOC>E2EDK14 10000000000000000010000020000010200600
E2EDK14 10000000000000000010000030000010200712
</IDOC>
</IDOCS>
<MT_IDOCS>
Actually this is just to give you an idea, but inside the IDOC tag I have a whole IDoc with the flat file structure that is going to be processed by with program RSEINB00. The incoming file has characters 0x0D and 0x0A between both lines, which is correct and is the desired format for program RSEINB00.
But when I download this XML using content conversion, the resulting file has lost the 0x0D character, it still has the 0x0A, but all 0x0D are gone.
The content conversion is set like this
Recordset structure IDOCS
IDOCS.fieldSeparator $$$$$$
IDOCS.endSeparator '0'
(I don't know exactly why they did it that one...anyway only 1 IDOCS tag is expected). The I have to extract the exact bytes from inside the IDOC tag and download them to a file. Is it possible to handle it from the content conversion? Thanks!