Hi,
Looking at the SAP documentation for the receiver file adapter the example of output is as follows: -
<root>...
<nameA>
<value1>value</value1>
<value2>value</value2>
<value3>value</value3>
</nameA>
<nameB>
<value4>value</value4>
</nameB>
</root>...
What XML data that I have has the structure: -
<root>...
<nameA>
<value1>value</value1>
<value2>value</value2>
<value3>value</value3>
</nameA>
<nameB>
<value4>value</value4>
</nameB>
<nameB>
<value4>value</value4>
</nameB>
<nameA>
<value1>value</value1>
<value2>value</value2>
<value3>value</value3>
</nameA>
<nameB>
<value4>value</value4>
</nameB>
</root>...
You will see that the <nameA> appears more than once with multiple <nameB> tags.
Can this be done using the content conversion. I have having difficulty in doing so.
Thanks
Martin