<?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 Select multiple XML Elements and write them in one Column as several rows in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Select-multiple-XML-Elements-and-write-them-in-one-Column-as/m-p/2237961#M26219</link>
    <description>&lt;P&gt;Hello everybody,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've got a problem inserting XML - data with many parameters into a MSSQL database.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The XML- structure is as seen below:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;lt;Document&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;Header&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Location&amp;gt;1234&amp;lt;Location&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/Header&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;VParameters&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;ID&amp;gt;12345678&amp;lt;/ID&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Type&amp;gt;A&amp;lt;/Type&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Parameter_A&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Value&amp;gt;Value A&amp;lt;/Value&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;description&amp;gt;Name&amp;lt;/description&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Unit&amp;gt;&amp;lt;/Unit&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Parameter_A&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Parameter_B&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Value&amp;gt;Value B&amp;lt;/Value&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;description&amp;gt;Time&amp;lt;/description&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Unit&amp;gt;s&amp;lt;/Unit&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Parameter_B&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Parameter_C&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Value&amp;gt;Value C&amp;lt;/Value&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;description&amp;gt;Workplace&amp;lt;/description&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Unit&amp;gt;&amp;lt;/Unit&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Parameter_C&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; [...]&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/VParameters&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;lt;/Document&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want to select the description and value of each parameter and insert it into sql rows named "description" and "parameter". It should look like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;U&gt;Location | ID&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|&amp;nbsp; Type |&amp;nbsp; &amp;nbsp; &amp;nbsp; description&amp;nbsp; &amp;nbsp; &amp;nbsp; |&amp;nbsp; Value&lt;/U&gt;&lt;/P&gt;
&lt;P&gt;1234&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|12345678 |&amp;nbsp; A&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|&amp;nbsp; &amp;nbsp;Name&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|&amp;nbsp; Value A&lt;/P&gt;
&lt;P&gt;1234&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|12345678 |&amp;nbsp; A&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|&amp;nbsp; &amp;nbsp;Time&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|&amp;nbsp; Value B&lt;/P&gt;
&lt;P&gt;1234&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|12345678 |&amp;nbsp; A&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|&amp;nbsp; &amp;nbsp;Workplace&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |&amp;nbsp; Value C&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I load the XML with a tFileInputXML and tried to connect the parameters using tXMLMap. But that doesn't work.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can someone explain how to solve this problem?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for your help.&lt;/P&gt;</description>
    <pubDate>Fri, 05 Apr 2019 12:52:32 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-04-05T12:52:32Z</dc:date>
    <item>
      <title>Select multiple XML Elements and write them in one Column as several rows</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Select-multiple-XML-Elements-and-write-them-in-one-Column-as/m-p/2237961#M26219</link>
      <description>&lt;P&gt;Hello everybody,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've got a problem inserting XML - data with many parameters into a MSSQL database.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The XML- structure is as seen below:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;lt;Document&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;Header&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Location&amp;gt;1234&amp;lt;Location&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/Header&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;VParameters&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;ID&amp;gt;12345678&amp;lt;/ID&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Type&amp;gt;A&amp;lt;/Type&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Parameter_A&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Value&amp;gt;Value A&amp;lt;/Value&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;description&amp;gt;Name&amp;lt;/description&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Unit&amp;gt;&amp;lt;/Unit&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Parameter_A&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Parameter_B&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Value&amp;gt;Value B&amp;lt;/Value&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;description&amp;gt;Time&amp;lt;/description&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Unit&amp;gt;s&amp;lt;/Unit&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Parameter_B&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Parameter_C&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Value&amp;gt;Value C&amp;lt;/Value&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;description&amp;gt;Workplace&amp;lt;/description&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Unit&amp;gt;&amp;lt;/Unit&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Parameter_C&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; [...]&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/VParameters&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;lt;/Document&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want to select the description and value of each parameter and insert it into sql rows named "description" and "parameter". It should look like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;U&gt;Location | ID&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|&amp;nbsp; Type |&amp;nbsp; &amp;nbsp; &amp;nbsp; description&amp;nbsp; &amp;nbsp; &amp;nbsp; |&amp;nbsp; Value&lt;/U&gt;&lt;/P&gt;
&lt;P&gt;1234&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|12345678 |&amp;nbsp; A&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|&amp;nbsp; &amp;nbsp;Name&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|&amp;nbsp; Value A&lt;/P&gt;
&lt;P&gt;1234&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|12345678 |&amp;nbsp; A&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|&amp;nbsp; &amp;nbsp;Time&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|&amp;nbsp; Value B&lt;/P&gt;
&lt;P&gt;1234&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|12345678 |&amp;nbsp; A&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|&amp;nbsp; &amp;nbsp;Workplace&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |&amp;nbsp; Value C&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I load the XML with a tFileInputXML and tried to connect the parameters using tXMLMap. But that doesn't work.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can someone explain how to solve this problem?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for your help.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Apr 2019 12:52:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Select-multiple-XML-Elements-and-write-them-in-one-Column-as/m-p/2237961#M26219</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-04-05T12:52:32Z</dc:date>
    </item>
    <item>
      <title>Re: Select multiple XML Elements and write them in one Column as several rows</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Select-multiple-XML-Elements-and-write-them-in-one-Column-as/m-p/2237962#M26220</link>
      <description>&lt;P&gt;try like this&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="TalendImage.JPG" style="width: 942px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M3X2.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/130038i7B6FD089365B4921/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M3X2.jpg" alt="0683p000009M3X2.jpg" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Output&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;BR /&gt;[statistics] connected&lt;BR /&gt;.--------+--------+----+----+-----------+-------.&lt;BR /&gt;| tLogRow_1 |&lt;BR /&gt;|=-------+--------+----+----+-----------+------=|&lt;BR /&gt;|Location|ID |Type|Unit|description|Value |&lt;BR /&gt;|=-------+--------+----+----+-----------+------=|&lt;BR /&gt;|1234 |12345678|A |a |Name |Value A|&lt;BR /&gt;|1234 |12345678|A |s |Time |Value B|&lt;BR /&gt;|1234 |12345678|A |c |Workplace |Value C|&lt;BR /&gt;'--------+--------+----+----+-----------+-------'&lt;BR /&gt;[statistics] disconnected&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Apr 2019 13:35:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Select-multiple-XML-Elements-and-write-them-in-one-Column-as/m-p/2237962#M26220</guid>
      <dc:creator>akumar2301</dc:creator>
      <dc:date>2019-04-05T13:35:23Z</dc:date>
    </item>
    <item>
      <title>Re: Select multiple XML Elements and write them in one Column as several rows</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Select-multiple-XML-Elements-and-write-them-in-one-Column-as/m-p/2237963#M26221</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp; &amp;nbsp;The current XML is wrong as most of the parameters are not having closing tags. I hope its an error while creating the XML manually. Coming to the parameter list, I believe the list of parameters is predetermined and it will not get added during run time.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp; &amp;nbsp;For example,&amp;nbsp; is it a good assumption to think that below XML is correct one?&lt;/P&gt; 
&lt;PRE&gt;&amp;lt;Document&amp;gt;

     &amp;lt;Header&amp;gt;

            &amp;lt;Location&amp;gt;1234&amp;lt;/Location&amp;gt;

     &amp;lt;/Header&amp;gt;

     &amp;lt;VParameters&amp;gt;

          &amp;lt;ID&amp;gt;12345678&amp;lt;/ID&amp;gt;

          &amp;lt;Type&amp;gt;A&amp;lt;/Type&amp;gt;

          &amp;lt;Parameter_A&amp;gt;

              &amp;lt;Value&amp;gt;Value A&amp;lt;/Value&amp;gt;

              &amp;lt;description&amp;gt;Name&amp;lt;/description&amp;gt;

              &amp;lt;Unit&amp;gt;&amp;lt;/Unit&amp;gt;

          &amp;lt;/Parameter_A&amp;gt;

 

          &amp;lt;Parameter_B&amp;gt;

              &amp;lt;Value&amp;gt;Value B&amp;lt;/Value&amp;gt;

              &amp;lt;description&amp;gt;Time&amp;lt;/description&amp;gt;

              &amp;lt;Unit&amp;gt;s&amp;lt;/Unit&amp;gt;

          &amp;lt;/Parameter_B&amp;gt;

 

          &amp;lt;Parameter_C&amp;gt;

              &amp;lt;Value&amp;gt;Value C&amp;lt;/Value&amp;gt;

              &amp;lt;description&amp;gt;Workplace&amp;lt;/description&amp;gt;

              &amp;lt;Unit&amp;gt;&amp;lt;/Unit&amp;gt;

          &amp;lt;/Parameter_C&amp;gt;

     &amp;lt;/VParameters&amp;gt;

&amp;lt;/Document&amp;gt;&lt;/PRE&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Warm Regards,&lt;BR /&gt;Nikhil Thampi&lt;/P&gt; 
&lt;P&gt;Please appreciate our Talend community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Apr 2019 13:37:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Select-multiple-XML-Elements-and-write-them-in-one-Column-as/m-p/2237963#M26221</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-04-05T13:37:36Z</dc:date>
    </item>
    <item>
      <title>Re: Select multiple XML Elements and write them in one Column as several rows</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Select-multiple-XML-Elements-and-write-them-in-one-Column-as/m-p/2237964#M26222</link>
      <description>&lt;P&gt;&lt;A href="https://community.qlik.com/s/profile/0053p000007LP7CAAW"&gt;@uganesh&lt;/A&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Good one buddy &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;BR /&gt;Nikhil Thampi&lt;/P&gt; 
&lt;P&gt;Please appreciate our Talend community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Apr 2019 13:39:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Select-multiple-XML-Elements-and-write-them-in-one-Column-as/m-p/2237964#M26222</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-04-05T13:39:06Z</dc:date>
    </item>
    <item>
      <title>Re: Select multiple XML Elements and write them in one Column as several rows</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Select-multiple-XML-Elements-and-write-them-in-one-Column-as/m-p/2237965#M26223</link>
      <description>Thanks for answering my question. The XML you see is just an example for how the real file looks like. The real data won't change during runtime.</description>
      <pubDate>Fri, 05 Apr 2019 14:53:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Select-multiple-XML-Elements-and-write-them-in-one-Column-as/m-p/2237965#M26223</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-04-05T14:53:13Z</dc:date>
    </item>
    <item>
      <title>Re: Select multiple XML Elements and write them in one Column as several rows</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Select-multiple-XML-Elements-and-write-them-in-one-Column-as/m-p/2237966#M26224</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;A href="https://community.qlik.com/s/profile/0053p000007LPRHAA4"&gt;@CB_Alias&lt;/A&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If all OK , Please mark the post as resolved as it helps others in Community.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Apr 2019 15:18:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Select-multiple-XML-Elements-and-write-them-in-one-Column-as/m-p/2237966#M26224</guid>
      <dc:creator>akumar2301</dc:creator>
      <dc:date>2019-04-05T15:18:24Z</dc:date>
    </item>
    <item>
      <title>Re: Select multiple XML Elements and write them in one Column as several rows</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Select-multiple-XML-Elements-and-write-them-in-one-Column-as/m-p/2237967#M26225</link>
      <description>Thank you!</description>
      <pubDate>Fri, 05 Apr 2019 15:34:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Select-multiple-XML-Elements-and-write-them-in-one-Column-as/m-p/2237967#M26225</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-04-05T15:34:41Z</dc:date>
    </item>
  </channel>
</rss>

