Hi, all
I am having a hard time getting the 1:n interface working. Here is data example:
<?xml version="1.0" encoding="UTF-8"?>
<ns0:source_mt xmlns:ns0="http://1ton_mapping">
<records>
<pernr>1111</pernr>
<plans>aaaa</plans>
</records>
<records>
<pernr>2222</pernr>
<plans>bbbb</plans>
</records>
</ns0:source_mt>
I want to split the xml into 2 parts and 2 different files using the receiver file adapter. So the contents should look like the following:
file1:
<?xml version="1.0" encoding="UTF-8"?>
<ns0:output_mt xmlns:ns0="http://1ton_mapping">
<records>
<pernr>1111</pernr>
<plans>aaaa</plans>
</ns0:source_mt>
file2:
<?xml version="1.0" encoding="UTF-8"?>
<ns0:output_mt xmlns:ns0="http://1ton_mapping">
<records>
<pernr>2222</pernr>
<plans>bbbb</plans>
</ns0:source_mt>
I have tried and followed the old blog and am getting mapping error:
Do you know where I can find the new procedure? I have already seen thread http://scn.sap.com/thread/3356432 and it is not obvious to me what the fix is? OSS note 1774773 is irrelevant to us as we are on a higher SP already.
Thanks,
Jonathan.