Skip to Content
0
Former Member
Nov 28, 2008 at 01:10 PM

Sender file adapter with content conversion Simple XML

16 Views

Hi experts,

I'm trying to parametrize my sender file adapter content conversion.

I'm receiving a text file with one single line like:

AA1;AA2; AA3;

and I want to convert it to an XML like

 <MT_A1>
<field1>AA1</field1>
<field2>AA2</field2>
<field3>AA3</field3>
</MT_A1> 

Actually I know how to do somenthing like

 <MT_A1>
    <LINE>
          <field1>AA1</field1>
          <field2>AA2</field2>
          <field3>AA3</field3>
     <LINE>
</MT_A1> 

What I want is remove the <LINE> tag from my XML.

Regards

Gonzalo

Edited by: Gonzalo del Castillo on Nov 28, 2008 2:18 PM