Hi,
I need to convert a XML file into a flatfile structure that I could use for importing into our business system (orderimport).
Are there any good mapping Tools for doing this or whats the most common way of handling conversions like this?
I´ve looked into Altova Mapforce but havent found much good Reviews.
The flatfile needs to be converted like this(small example).
XML file
<MessageHeader>
<Orderline>
Flat File
<HEAD>
1000;1212;
<ROW>
3434;10;12439-2
<MessageHeader> needs to convert to <HEAD>
<Orderline> needs to convert to <ROW>
the rest of the fields needs to be split with ;
Any Ideas/suggestions?
//Mike
I need to convert a XML file into a flatfile structure that I could use for importing into our business system (orderimport).
Are there any good mapping Tools for doing this or whats the most common way of handling conversions like this?
I´ve looked into Altova Mapforce but havent found much good Reviews.
The flatfile needs to be converted like this(small example).
XML file
<MessageHeader>
<SenderID>1000</SenderID>
<RecieverID>1212</RecieverID>
</MessageHeader><Orderline>
<OrderNo>3434</OrderNo>
<OrderRow>10</OrderRow>
<ArticleNo>12439-2</ArticleNo>
</Orderline>Flat File
<HEAD>
1000;1212;
<ROW>
3434;10;12439-2
<MessageHeader> needs to convert to <HEAD>
<Orderline> needs to convert to <ROW>
the rest of the fields needs to be split with ;
Any Ideas/suggestions?
//Mike