Just to clarify.
My interface is an RFC to File
There is a field exporting calling I_XML, that is a string.
In this field I send an XML, in case this XML:
<?xml version="1.0" encoding="iso-8859-1"?>
<INVOICES>
<Envelop>
<senderId>123456</senderId>
<recipientId>123457</recipientId>
<controlNumber></controlNumber>
<dateTime>20150903091225</dateTime>
<testIndicator>1</testIndicator>
<messageType version="1">INVOICE</messageType>
</Envelop>
</INVOICES>
I Need only this go to the file, nothing more or nothing different, exact this.
But during the mapping and process of the interface, somethng occurs that modify completly my string.
So, the file in ftp is this:
<?xml version="1.0" encoding="UTF-8"?>
<ns1:MT_InvoiceToDescartes xmlns:ns1="http://www.brf.net/ediEurope/AperakToDescartes"><XML><?xml version="1.0" encoding="iso-8859-1"?>
<INVOICES>
<Envelop>
<senderId>123456</senderId>
<recipientId>123457</recipientId>
<controlNumber></controlNumber>
<dateTime>20150903091225</dateTime>
<testIndicator>1</testIndicator>
<messageType version="1">INVOICE</messageType>
</Envelop>
</INVOICES></XML></ns1:MT_InvoiceToDescartes>
Note that the values of the fields are the same, but it included the encoding, and substitute the '<' '>' by '<' and '>', and other things.
I don't know, what i need to do to make PI don't modify the string, and save only the string I send.
To be more exactly, this is my Message Mapping
My CC File is this:
Thanks for response Amarnath Mand Raghuraman Sritharan.
And sorry for my english, I'm still learning.

