Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

Convert XML to CSV

Input XML:
<?xml version='1.0' encoding='UTF-8'?>
<MT_Customer>
<data>
<row>
<CustomerID>ALFKI</CustomerID>
<CompanyName>Alfreds</CompanyName>
<Country>Germany</Country>
</row>
<row>
<CustomerID>BERGS</CustomerID>
<CompanyName>Berglunds</CompanyName>
<Country>Sweden</Country>
</row>
<row>
<CustomerID>CACTU</CustomerID>
<CompanyName>Cactus</CompanyName>
<Country>Argentina</Country>
</row>
</data>
</MT_Customer>

Output CSV:
CustomerID,CompanyName,Country
ALFKI,Alfreds,Germany
BLAUS,Berglunds,Sweden
CACTU,Cactus,Argentina

-> try change to with namespace:


<ns0:MT_Customer xmlns:ns0="http://cpi.sap.com/demo">
</ns0:MT_Customer>

Namespace mapping:
xmlns:ns0=http://cpi.sap.com/demo;xmlns:ns1=http://sap.com/xi/XI/SplitAndMerge

->try add parent node


<parent>
<H1>AAA</H1>
<H2>BBB</H2>
</parent>
<parent>
<H1>CCC</H1>
<H2>DDD</H2>
</parent>

->try add attributes

You might also like