<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to merge multiple queries into one single XML File in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/How-to-merge-multiple-queries-into-one-single-XML-File/m-p/2232975#M22765</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;again thank you so much for your follow up!&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;My record would look like this. The problem I am currently having is that my firm is unsure on how the data is actually really going to look like.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;entity1:&lt;BR /&gt;entity1Num | field1 | ...&lt;BR /&gt;1          | 'f1'   | ...&lt;BR /&gt;&lt;BR /&gt;entity3:
&amp;lt;!-- entity3 only ever belongs to entity1 once, although this might be subject to change --&amp;gt;
entity1Num | field1 | field2
1          | 'f1'   | 'f2'
2          | 'a1'   | 'a2'

entity4 (e3's subentity)
entity1Num | field1 | field2
1          | 'f1'   | 'f2'
1          | 'f3'   | 'f4'
2          | 'f5'   | 'f6'
2          | 'f7'   | 'f8'&amp;nbsp;&lt;BR /&gt;&amp;lt;!-- it might happen that one e1 has multiple e3s --&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;lt;entity1&amp;gt;&lt;BR /&gt;    &amp;lt;entities2&amp;gt;&lt;BR /&gt;       &amp;lt;!-- ... --&amp;gt;&lt;BR /&gt;    &amp;lt;/entities2&amp;gt;&lt;BR /&gt;   &amp;lt;entities3&amp;gt;&lt;BR /&gt;      &amp;lt;entity3&amp;gt;&lt;BR /&gt;         &amp;lt;!-- ... --&amp;gt;&lt;BR /&gt;         &amp;lt;entities4&amp;gt;&lt;BR /&gt;            &amp;lt;entity4&amp;gt;&lt;BR /&gt;               &amp;lt;!-- ... --&amp;gt;&lt;BR /&gt;            &amp;lt;/entity4&amp;gt;&lt;BR /&gt;         &amp;lt;/entities4&amp;gt;&lt;BR /&gt;      &amp;lt;/entities3&amp;gt;&lt;BR /&gt;   &amp;lt;/entities3&amp;gt;&lt;BR /&gt;&amp;lt;/entity1&amp;gt;&lt;/PRE&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 12 Nov 2018 08:55:38 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-11-12T08:55:38Z</dc:date>
    <item>
      <title>How to merge multiple queries into one single XML File</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-merge-multiple-queries-into-one-single-XML-File/m-p/2232967#M22757</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I can usually Google my answers, but this one really has me stuck for the last three hours now. I could really use some input.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am trying to merge multiple queries into one big XML file. Hook? Some queries return multiple rows for the same ID.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think that this can be done using a tXMLMap - but I have failed to find how to do the INNER JOIN on each query.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How would I do this?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let me give you an example:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;entity1:

entity1Num | someOtherRow
1          | 'abc'
2          | 'def'
...

entity2:

entity1Num | field1 | field2 | field3 
1          | 'f1'   | 'f2'   | 'f3'
1          | 'f4'   | 'f5'   | 'f6'
1          | 'f7'   | 'f8'   | 'f9'
2          | 'f7'   | 'f8'   | 'f9'
...

entity3:

entity1Num | field1 | field2
1          | 'f1'   | 'f2'
...

Should yield:
&amp;lt;entities1&amp;gt;
	&amp;lt;entity1&amp;gt;
		&amp;lt;entity1Num&amp;gt;1&amp;lt;/entity1Num&amp;gt;
		&amp;lt;entities2&amp;gt;
			&amp;lt;entity2&amp;gt;
				&amp;lt;field1&amp;gt;f1&amp;lt;/field1&amp;gt;
				&amp;lt;field2&amp;gt;f2&amp;lt;/field2&amp;gt;
				&amp;lt;field3&amp;gt;f3&amp;lt;/field3&amp;gt;
			&amp;lt;/entity2&amp;gt;
			&amp;lt;entity2&amp;gt;
				&amp;lt;field1&amp;gt;f4&amp;lt;/field1&amp;gt;
				&amp;lt;field2&amp;gt;f5&amp;lt;/field2&amp;gt;
				&amp;lt;field3&amp;gt;f6&amp;lt;/field3&amp;gt;
			&amp;lt;/entity2&amp;gt;
			&amp;lt;entity2&amp;gt;
				&amp;lt;field1&amp;gt;f7&amp;lt;/field1&amp;gt;
				&amp;lt;field2&amp;gt;f8&amp;lt;/field2&amp;gt;
				&amp;lt;field3&amp;gt;f9&amp;lt;/field3&amp;gt;
			&amp;lt;/entity2&amp;gt;
		&amp;lt;/entities2&amp;gt;
		&amp;lt;someOtherRow&amp;gt;abc&amp;lt;/someOtherRow&amp;gt;
	&amp;lt;/entity1&amp;gt;
	...
&amp;lt;/entities1&amp;gt;&lt;/PRE&gt;
&lt;P&gt;I appreciate your answers. Thanks in advance!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers!&lt;/P&gt;</description>
      <pubDate>Thu, 08 Nov 2018 13:49:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-merge-multiple-queries-into-one-single-XML-File/m-p/2232967#M22757</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-11-08T13:49:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to merge multiple queries into one single XML File</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-merge-multiple-queries-into-one-single-XML-File/m-p/2232968#M22758</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Could you please change the perspective of Talend to&amp;nbsp;Mapping mode and try to create structure and mapping using Talend Data Mapper. That will be more easier way to maintain XML feeds since its storing structures and mappings also.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Warm Regards,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Nikhil Thampi&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Nov 2018 07:15:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-merge-multiple-queries-into-one-single-XML-File/m-p/2232968#M22758</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-11-09T07:15:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to merge multiple queries into one single XML File</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-merge-multiple-queries-into-one-single-XML-File/m-p/2232969#M22759</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I don't seem to have this option in my Open Talend Studio 7.0.1 &lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MPcz.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/157233iD1A564EF62DE3BC2/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MPcz.png" alt="0683p000009MPcz.png" /&gt;&lt;/span&gt;&lt;/P&gt; 
&lt;P&gt;Where would I find this?&lt;/P&gt;</description>
      <pubDate>Fri, 09 Nov 2018 09:13:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-merge-multiple-queries-into-one-single-XML-File/m-p/2232969#M22759</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-11-09T09:13:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to merge multiple queries into one single XML File</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-merge-multiple-queries-into-one-single-XML-File/m-p/2232970#M22760</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Unfortunately it is not available in Open Studio version. So the current issue has to be dealt with txmlmap itself.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Warm Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Nikhil Thampi&lt;/P&gt;</description>
      <pubDate>Fri, 09 Nov 2018 09:21:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-merge-multiple-queries-into-one-single-XML-File/m-p/2232970#M22760</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-11-09T09:21:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to merge multiple queries into one single XML File</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-merge-multiple-queries-into-one-single-XML-File/m-p/2232971#M22761</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;so does this man that the scenario, as I have explained it is actually solvable using tXMLMap?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If so, could you give me some hints how to do this? Unfortunately I have already spent way too much time on trying to figure this out and I think I am now thinking in circles. Any advice will be greatly appreciated.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Thanks &amp;amp; regards,&lt;/P&gt;
&lt;P&gt;lib&lt;/P&gt;</description>
      <pubDate>Fri, 09 Nov 2018 09:44:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-merge-multiple-queries-into-one-single-XML-File/m-p/2232971#M22761</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-11-09T09:44:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to merge multiple queries into one single XML File</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-merge-multiple-queries-into-one-single-XML-File/m-p/2232972#M22762</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;I have done some quick job flow creation. I was able to consolidate the data for each driving table record. Since your output do not have any reference to enity3, I have skipped it.&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="image.png" style="width: 911px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M11N.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/133924iB407FF0BCB5E556B/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M11N.png" alt="0683p000009M11N.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;The representation of txmlmap is as below.&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="image.png" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M11X.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/139011iE6E6518AB63C7BE2/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M11X.png" alt="0683p000009M11X.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Since I have to jump to some meetings, I could not investigate it further. Hope it has helped you. If you need to consolidate/aggregate further, I would suggest to use an additional txmlmap (or a tjavarow to remove or add the details programmatic manner) so that tracking of data will be easy.&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;If the answer has helped you, could you please mark the topic as resolved? Kudos are also welcome &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Warm Regards,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Nikhil Thampi&lt;/P&gt;</description>
      <pubDate>Fri, 09 Nov 2018 11:36:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-merge-multiple-queries-into-one-single-XML-File/m-p/2232972#M22762</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-11-09T11:36:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to merge multiple queries into one single XML File</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-merge-multiple-queries-into-one-single-XML-File/m-p/2232973#M22763</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I thank you SO MUCH for your help. I really appreciate it.&lt;/P&gt; 
&lt;P&gt;It worked too! I now have the first part of my XML, hooray.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;My requirements are that I should be able to add entity1,entity2,...,entityN.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;&amp;lt;entities1&amp;gt;
	&amp;lt;entity1&amp;gt;
		&amp;lt;entity1Num&amp;gt;1&amp;lt;/entity1Num&amp;gt;
		&amp;lt;entities2&amp;gt;
			&amp;lt;entity2&amp;gt;
				&amp;lt;field1&amp;gt;f1&amp;lt;/field1&amp;gt;
				&amp;lt;field2&amp;gt;f2&amp;lt;/field2&amp;gt;
				&amp;lt;field3&amp;gt;f3&amp;lt;/field3&amp;gt;
			&amp;lt;/entity2&amp;gt;
			&amp;lt;entity2&amp;gt;
				&amp;lt;field1&amp;gt;f4&amp;lt;/field1&amp;gt;
				&amp;lt;field2&amp;gt;f5&amp;lt;/field2&amp;gt;
				&amp;lt;field3&amp;gt;f6&amp;lt;/field3&amp;gt;
			&amp;lt;/entity2&amp;gt;
			&amp;lt;entity2&amp;gt;
				&amp;lt;field1&amp;gt;f7&amp;lt;/field1&amp;gt;
				&amp;lt;field2&amp;gt;f8&amp;lt;/field2&amp;gt;
				&amp;lt;field3&amp;gt;f9&amp;lt;/field3&amp;gt;
			&amp;lt;/entity2&amp;gt;
		&amp;lt;/entities2&amp;gt;
&amp;lt;!-- NEW --&amp;gt;
		&amp;lt;entity3&amp;gt;
			&amp;lt;field1&amp;gt;f1&amp;lt;/field1&amp;gt;
			&amp;lt;field2&amp;gt;f2&amp;lt;/field2&amp;gt;&lt;BR /&gt;                        &amp;lt;!-- NEW START --&amp;gt;&lt;BR /&gt;                        &amp;lt;entities4&amp;gt;&lt;BR /&gt;                            &amp;lt;entity4&amp;gt;&lt;BR /&gt;                               &amp;lt;fieldA&amp;gt;fa&amp;lt;/fieldA&amp;gt;&lt;BR /&gt;                               &amp;lt;fieldB&amp;gt;fb&amp;lt;/fieldB&amp;gt;&lt;BR /&gt;                               &amp;lt;fieldC&amp;gt;fc&amp;lt;/fieldC&amp;gt;&lt;BR /&gt;                            &amp;lt;/entity4&amp;gt;&lt;BR /&gt;                            &amp;lt;entity4&amp;gt;&lt;BR /&gt;                               &amp;lt;fieldA&amp;gt;fz&amp;lt;/fieldA&amp;gt;&lt;BR /&gt;                               &amp;lt;fieldB&amp;gt;fy&amp;lt;/fieldB&amp;gt;&lt;BR /&gt;                               &amp;lt;fieldC&amp;gt;fx&amp;lt;/fieldC&amp;gt;&lt;BR /&gt;                            &amp;lt;/entity4&amp;gt;&lt;BR /&gt;                        &amp;lt;/entities4&amp;gt;&lt;BR /&gt;                        &amp;lt;!-- NEW END --&amp;gt;
		&amp;lt;/entity3&amp;gt;
&amp;lt;!-- END NEW --&amp;gt;
		&amp;lt;someOtherRow&amp;gt;abc&amp;lt;/someOtherRow&amp;gt;
	&amp;lt;/entity1&amp;gt;
	...
&amp;lt;/entities1&amp;gt;&lt;/PRE&gt; 
&lt;P&gt;Unfortunately I have tried to do this, but I have yet failed again.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Would you mind to help me out one more time, please?&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Thanks &amp;amp; kindes regards,&lt;/P&gt; 
&lt;P&gt;lib&lt;/P&gt;</description>
      <pubDate>Fri, 09 Nov 2018 13:41:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-merge-multiple-queries-into-one-single-XML-File/m-p/2232973#M22763</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-11-09T13:41:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to merge multiple queries into one single XML File</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-merge-multiple-queries-into-one-single-XML-File/m-p/2232974#M22764</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Could you please share the sample incoming records for entity 3 and entity 4 and how they are related to entity 1? You can create the data in tabular format like you had given in your first post.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Warm Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Nikhil Thampi&lt;/P&gt;</description>
      <pubDate>Sun, 11 Nov 2018 07:04:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-merge-multiple-queries-into-one-single-XML-File/m-p/2232974#M22764</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-11-11T07:04:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to merge multiple queries into one single XML File</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-merge-multiple-queries-into-one-single-XML-File/m-p/2232975#M22765</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;again thank you so much for your follow up!&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;My record would look like this. The problem I am currently having is that my firm is unsure on how the data is actually really going to look like.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;entity1:&lt;BR /&gt;entity1Num | field1 | ...&lt;BR /&gt;1          | 'f1'   | ...&lt;BR /&gt;&lt;BR /&gt;entity3:
&amp;lt;!-- entity3 only ever belongs to entity1 once, although this might be subject to change --&amp;gt;
entity1Num | field1 | field2
1          | 'f1'   | 'f2'
2          | 'a1'   | 'a2'

entity4 (e3's subentity)
entity1Num | field1 | field2
1          | 'f1'   | 'f2'
1          | 'f3'   | 'f4'
2          | 'f5'   | 'f6'
2          | 'f7'   | 'f8'&amp;nbsp;&lt;BR /&gt;&amp;lt;!-- it might happen that one e1 has multiple e3s --&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;lt;entity1&amp;gt;&lt;BR /&gt;    &amp;lt;entities2&amp;gt;&lt;BR /&gt;       &amp;lt;!-- ... --&amp;gt;&lt;BR /&gt;    &amp;lt;/entities2&amp;gt;&lt;BR /&gt;   &amp;lt;entities3&amp;gt;&lt;BR /&gt;      &amp;lt;entity3&amp;gt;&lt;BR /&gt;         &amp;lt;!-- ... --&amp;gt;&lt;BR /&gt;         &amp;lt;entities4&amp;gt;&lt;BR /&gt;            &amp;lt;entity4&amp;gt;&lt;BR /&gt;               &amp;lt;!-- ... --&amp;gt;&lt;BR /&gt;            &amp;lt;/entity4&amp;gt;&lt;BR /&gt;         &amp;lt;/entities4&amp;gt;&lt;BR /&gt;      &amp;lt;/entities3&amp;gt;&lt;BR /&gt;   &amp;lt;/entities3&amp;gt;&lt;BR /&gt;&amp;lt;/entity1&amp;gt;&lt;/PRE&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Nov 2018 08:55:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-merge-multiple-queries-into-one-single-XML-File/m-p/2232975#M22765</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-11-12T08:55:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to merge multiple queries into one single XML File</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-merge-multiple-queries-into-one-single-XML-File/m-p/2232976#M22766</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; Could you first create an XSD file where you can define your schema correctly and then create a sample XML based on your current result set and verify whether the schema is matching with the results you are planning to create?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;You can use the below link to validate the XSD with XML.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.freeformatter.com/xml-validator-xsd.html" target="_blank" rel="nofollow noopener noreferrer"&gt;https://www.freeformatter.com/xml-validator-xsd.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; I am worried whether the loops at entity 3 and entity 4 will create problem as the loops are at two different levels for same branch. Could you please check whether it can be simplified further?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Warm Regards,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Nikhil Thampi&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Nov 2018 13:46:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-merge-multiple-queries-into-one-single-XML-File/m-p/2232976#M22766</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-11-12T13:46:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to merge multiple queries into one single XML File</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-merge-multiple-queries-into-one-single-XML-File/m-p/2232977#M22767</link>
      <description>Hi,
&lt;BR /&gt;
&lt;BR /&gt;sure thing. Let me get back to you once I had the time to do this. Probably today or tomorrow!
&lt;BR /&gt;
&lt;BR /&gt;Regards,
&lt;BR /&gt;lib</description>
      <pubDate>Tue, 13 Nov 2018 09:29:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-merge-multiple-queries-into-one-single-XML-File/m-p/2232977#M22767</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-11-13T09:29:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to merge multiple queries into one single XML File</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-merge-multiple-queries-into-one-single-XML-File/m-p/2232978#M22768</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;Could you please also create the sample source files for all different entities as a csv file and attach them also along with other details? It will help our community members to quickly simulate the flow at their end.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Warm Regards,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Nikhil Thampi&lt;/P&gt;</description>
      <pubDate>Tue, 13 Nov 2018 09:33:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-merge-multiple-queries-into-one-single-XML-File/m-p/2232978#M22768</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-11-13T09:33:13Z</dc:date>
    </item>
  </channel>
</rss>

