Hello
I have the following scenario in XI 3.0:
- sender interface: RFC adapter
- receiver interface: File adapter
The file which is created by the file adapter is an XML
file with the following content:
<rfc:Z_PROCESSORDER xmlns:rfc="urn:sap-com:document:sap:rfc:functions">
<I_TEXT>Hallo</I_TEXT>
<I_ID>0000001005</I_ID>
</rfc:Z_PROCESSORDER>
What I would like to have is not an XML file but
a file which only contains:
Hallo
0000001005
I am using the file adapter of the J2EE-Adapter Engine
which is new in XI 3.0.
Is this possible with this file adapter or do I have
to use the file adapter of the "Plain J2SE Adapter Engine"
(which correspondes to the 'old' XI 2.0 adapters).
Best regards,
Stefan
you have first to convert your structure to something like .
<resultset>
<row> <<<<<<<<<<<<<<<<<<< this is the important bit
<TEXT>Hallo</TEXT>
</row>
<row>
<TEXT>0000001005</TEXT>
</row>
</resultset>
if you want something like :
Hallo;00000000105
the structure needs to look like
<resultset>
<row> <<<<<<<<<<<<<<<<<<< this is the important bit
<TEXT>Hallo</TEXT>
<TEXT2>0000001005</TEXT2>
</row>
<row>
</resultset>
configuration parameters are very similar to those in the plain adapter engine.
I this link is useful for receiver adapter config.
http://help.sap.com/saphelp_nw04/helpdata/en/d2/bab440c97f3716e10000000a155106/content.htm
regards,
sachin
Add a comment