Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

How to merge multiple xml rows ?

Hi,

I have a xml file as below:

 

<?xml version="1.0" encoding="UTF-8"?>
<items>
	<item id="1234" type="donut">
		<name>Cake</name>
		<ppu>0.55</ppu>
		<ListOfIngredients>
		<batters>
			<batter id="1001">Regular</batter>
			<batter id="1002">Chocolate</batter>
			<batter id="1003">Blueberry</batter>
		</batters>		
		</ListOfIngredients>
	</item>
	<item id="5678" type="donut">
		<name>Raised</name>
		<ppu>0.55</ppu>
		<ListOfIngredients>
		<batters>
			<batter id="1001">Regular</batter>
			<batter id="1002">Chocolate</batter>
			<batter id="1003">Blueberry</batter>
<batter id='1004">Raspberry</batter> </batters> </ListOfIngredients> </item> </items>

How to read above xml and file output as below:

ItemID|Name|1001|1002|1003|1004|

1234|Cake|Regular|Chocolate|Blueberry||

5678|Raised|Regular|Chocolate|Blueberry|Raspberry|

 

Labels (3)
1 Solution

Accepted Solutions
vapukov
Master II
Master II

generally You need 2 component, 1 provided by Talend and 1 from provided by Community (Talend Exchange)

 

First - parce XML File (tFileInputXML)

Second - tPivotToColumnDelimited

 

 

0683p000009LuOT.png0683p000009LuGG.png

than You receive expected result

 

id;name;1001;1002;1003;1004
1234;Cake;Regular;Chocolate;Blueberry;
5678;Raised;Regular;Chocolate;Blueberry;Raspberry

View solution in original post

2 Replies
Anonymous
Not applicable
Author

Hello,

Here is a tExtractXMLField component which reads an input XML field of a file or a database table and extracts desired data.

https://help.talend.com/display/TalendComponentsReferenceGuide63EN/tExtractXMLField

Best regards

Sabrina

vapukov
Master II
Master II

generally You need 2 component, 1 provided by Talend and 1 from provided by Community (Talend Exchange)

 

First - parce XML File (tFileInputXML)

Second - tPivotToColumnDelimited

 

 

0683p000009LuOT.png0683p000009LuGG.png

than You receive expected result

 

id;name;1001;1002;1003;1004
1234;Cake;Regular;Chocolate;Blueberry;
5678;Raised;Regular;Chocolate;Blueberry;Raspberry