<?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 TDM multiple CSV inputs in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/TDM-multiple-CSV-inputs/m-p/2198863#M2017</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I recently tried to generate a complex structured format (GS1 format in JSON or XML) from a database. The fact the output format is quite complex and pre-exist on TDM samples data drive me to use the data mapper but there is no supported connectors for this database (informix). In the following descripion i'm using &lt;STRONG&gt;6.2.1 version&lt;/STRONG&gt; of Talend but had tried to do it in&lt;STRONG&gt; 7.2.1&lt;/STRONG&gt; without success.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;To create this complex structure I need to make multiple lookups from the database as it concern data from several entities.&lt;/P&gt; 
&lt;P&gt;So I though that I could generate flat files (CSV) from informix and then map multiples CSV files to the complex JSON, using the &lt;STRONG&gt;ReadURL&lt;/STRONG&gt; function that is described here :&amp;nbsp;&lt;A href="https://help.talend.com/reader/njNNGkCowThcKR6notunrw/Q7rNzUuyhHhMMfjNxPvvXA" target="_blank" rel="nofollow noopener noreferrer"&gt;https://help.talend.com/reader/njNNGkCowThcKR6notunrw/Q7rNzUuyhHhMMfjNxPvvXA&lt;/A&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;To begin&amp;nbsp;with, I tried with simple structures based on these files :&lt;/P&gt; 
&lt;P&gt;&lt;STRONG&gt;file1 (first input)&lt;/STRONG&gt;&lt;/P&gt; 
&lt;PRE&gt;column1;column2;column3
1;"example here";500
2;"second example";834.12&lt;/PRE&gt; 
&lt;P&gt;&lt;STRONG&gt;file2 (second input)&lt;/STRONG&gt;&lt;/P&gt; 
&lt;PRE&gt;column1;column1_ref
"Something";1
"Something else";2
"Again";2&lt;/PRE&gt; 
&lt;P&gt;&lt;STRONG&gt;file3 (output example)&lt;/STRONG&gt;&lt;/P&gt; 
&lt;PRE&gt;{
	"item_id": 2,
	"name": "second example",
	"price": 834.12,
	"tags": [
		"Something else",
		"Again"
	]
}&lt;/PRE&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;In the TDM, I created a structure that include the &lt;STRONG&gt;file1&lt;/STRONG&gt; and &lt;STRONG&gt;file2&lt;/STRONG&gt; &lt;STRONG&gt;structures&lt;/STRONG&gt; which look like this :&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="multi-input structure" style="width: 238px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M83M.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/138961i788441B5A88097E5/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M83M.png" alt="0683p000009M83M.png" /&gt;&lt;/span&gt;&lt;SPAN class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;multi-input structure&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;And here the problem begin, when I try to "Show Sample" this structure here is what I got (XML Representation):&lt;/P&gt; 
&lt;PRE&gt;&amp;lt;Flat:ROOT&amp;gt;
  &amp;lt;Flat:file1&amp;gt;
    &amp;lt;Flat:row&amp;gt;
      &amp;lt;Flat:id&amp;gt;1&amp;lt;/Flat:id&amp;gt;
      &amp;lt;Flat:name&amp;gt;example here&amp;lt;/Flat:name&amp;gt;
      &lt;FONT color="#FF0000"&gt;&amp;lt;Flat:price&amp;gt;50010
2;&amp;lt;/Flat:price&amp;gt;&lt;/FONT&gt;
    &amp;lt;/Flat:row&amp;gt;
    &amp;lt;Flat:row&amp;gt;
      &lt;FONT color="#FF0000"&gt;&amp;lt;Flat:id&amp;gt;second example&amp;lt;/Flat:id&amp;gt;
      &amp;lt;Flat:name&amp;gt;
        &amp;lt;Flat:file2&amp;gt;
          &amp;lt;Flat:row&amp;gt;
            &amp;lt;Flat:description&amp;gt;Something&amp;lt;/Flat:description&amp;gt;
            &amp;lt;Flat:item_id&amp;gt;1&amp;lt;/Flat:item_id&amp;gt;
          &amp;lt;/Flat:row&amp;gt;
          &amp;lt;Flat:row&amp;gt;
            &amp;lt;Flat:description&amp;gt;Something else&amp;lt;/Flat:description&amp;gt;
            &amp;lt;Flat:item_id&amp;gt;2&amp;lt;/Flat:item_id&amp;gt;
          &amp;lt;/Flat:row&amp;gt;
          &amp;lt;Flat:row&amp;gt;
            &amp;lt;Flat:description&amp;gt;Again&amp;lt;/Flat:description&amp;gt;
            &amp;lt;Flat:item_id&amp;gt;2&amp;lt;/Flat:item_id&amp;gt;
          &amp;lt;/Flat:row&amp;gt;
        &amp;lt;/Flat:file2&amp;gt;
      &amp;lt;/Flat:name&amp;gt;&lt;/FONT&gt;
    &amp;lt;/Flat:row&amp;gt;
  &amp;lt;/Flat:file1&amp;gt;
&amp;lt;/Flat:ROOT&amp;gt;&lt;/PRE&gt; 
&lt;P&gt;instead of :&lt;/P&gt; 
&lt;PRE&gt;&amp;lt;Flat:ROOT&amp;gt;
  &amp;lt;Flat:file1&amp;gt;
    &amp;lt;Flat:row&amp;gt;
      &amp;lt;Flat:id&amp;gt;1&amp;lt;/Flat:id&amp;gt;
      &amp;lt;Flat:name&amp;gt;example here&amp;lt;/Flat:name&amp;gt;
      &amp;lt;Flat:price&amp;gt;50010&amp;lt;/Flat:price&amp;gt;
    &amp;lt;/Flat:row&amp;gt;
    &lt;FONT color="#008000"&gt;&amp;lt;Flat:row&amp;gt;
      &amp;lt;Flat:id&amp;gt;2&amp;lt;/Flat:id&amp;gt;
      &amp;lt;Flat:name&amp;gt;second example&amp;lt;/Flat:name&amp;gt;
      &amp;lt;Flat:price&amp;gt;834.12&amp;lt;/Flat:price&amp;gt;
    &amp;lt;/Flat:row&amp;gt;&lt;/FONT&gt;
  &amp;lt;/Flat:file1&amp;gt;
  &amp;lt;Flat:file2&amp;gt;
    &amp;lt;Flat:row&amp;gt;
      &amp;lt;Flat:description&amp;gt;Something&amp;lt;/Flat:description&amp;gt;
      &amp;lt;Flat:item_id&amp;gt;1&amp;lt;/Flat:item_id&amp;gt;
    &amp;lt;/Flat:row&amp;gt;
    &amp;lt;Flat:row&amp;gt;
      &amp;lt;Flat:description&amp;gt;Something else&amp;lt;/Flat:description&amp;gt;
      &amp;lt;Flat:item_id&amp;gt;2&amp;lt;/Flat:item_id&amp;gt;
    &amp;lt;/Flat:row&amp;gt;
    &amp;lt;Flat:row&amp;gt;
      &amp;lt;Flat:description&amp;gt;Again&amp;lt;/Flat:description&amp;gt;
      &amp;lt;Flat:item_id&amp;gt;2&amp;lt;/Flat:item_id&amp;gt;
    &amp;lt;/Flat:row&amp;gt;
  &amp;lt;/Flat:file2&amp;gt;
&amp;lt;/Flat:ROOT&amp;gt;&lt;/PRE&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;As well as an error, due to column shift :&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="error on multi-input structure" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M7vk.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/150334i8D456798AEE2B575/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M7vk.jpg" alt="0683p000009M7vk.jpg" /&gt;&lt;/span&gt;&lt;SPAN class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;error on multi-input structure&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;Can somebody help me resolving this issue ? It seems that the "price" column which is a float is taking the line terminator (LF) and the next row "id".&lt;/P&gt; 
&lt;P&gt;&lt;EM&gt;Notice that this is not happening on the &lt;STRONG&gt;file1&lt;/STRONG&gt; structure :&amp;nbsp;&lt;/EM&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="file1 structure" style="width: 635px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M8BT.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/133252iBB24D96AB9C608EF/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M8BT.png" alt="0683p000009M8BT.png" /&gt;&lt;/span&gt;&lt;SPAN class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;file1 structure&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 16 Nov 2024 04:24:19 GMT</pubDate>
    <dc:creator>CSen</dc:creator>
    <dc:date>2024-11-16T04:24:19Z</dc:date>
    <item>
      <title>TDM multiple CSV inputs</title>
      <link>https://community.qlik.com/t5/Talend-Studio/TDM-multiple-CSV-inputs/m-p/2198863#M2017</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I recently tried to generate a complex structured format (GS1 format in JSON or XML) from a database. The fact the output format is quite complex and pre-exist on TDM samples data drive me to use the data mapper but there is no supported connectors for this database (informix). In the following descripion i'm using &lt;STRONG&gt;6.2.1 version&lt;/STRONG&gt; of Talend but had tried to do it in&lt;STRONG&gt; 7.2.1&lt;/STRONG&gt; without success.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;To create this complex structure I need to make multiple lookups from the database as it concern data from several entities.&lt;/P&gt; 
&lt;P&gt;So I though that I could generate flat files (CSV) from informix and then map multiples CSV files to the complex JSON, using the &lt;STRONG&gt;ReadURL&lt;/STRONG&gt; function that is described here :&amp;nbsp;&lt;A href="https://help.talend.com/reader/njNNGkCowThcKR6notunrw/Q7rNzUuyhHhMMfjNxPvvXA" target="_blank" rel="nofollow noopener noreferrer"&gt;https://help.talend.com/reader/njNNGkCowThcKR6notunrw/Q7rNzUuyhHhMMfjNxPvvXA&lt;/A&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;To begin&amp;nbsp;with, I tried with simple structures based on these files :&lt;/P&gt; 
&lt;P&gt;&lt;STRONG&gt;file1 (first input)&lt;/STRONG&gt;&lt;/P&gt; 
&lt;PRE&gt;column1;column2;column3
1;"example here";500
2;"second example";834.12&lt;/PRE&gt; 
&lt;P&gt;&lt;STRONG&gt;file2 (second input)&lt;/STRONG&gt;&lt;/P&gt; 
&lt;PRE&gt;column1;column1_ref
"Something";1
"Something else";2
"Again";2&lt;/PRE&gt; 
&lt;P&gt;&lt;STRONG&gt;file3 (output example)&lt;/STRONG&gt;&lt;/P&gt; 
&lt;PRE&gt;{
	"item_id": 2,
	"name": "second example",
	"price": 834.12,
	"tags": [
		"Something else",
		"Again"
	]
}&lt;/PRE&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;In the TDM, I created a structure that include the &lt;STRONG&gt;file1&lt;/STRONG&gt; and &lt;STRONG&gt;file2&lt;/STRONG&gt; &lt;STRONG&gt;structures&lt;/STRONG&gt; which look like this :&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="multi-input structure" style="width: 238px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M83M.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/138961i788441B5A88097E5/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M83M.png" alt="0683p000009M83M.png" /&gt;&lt;/span&gt;&lt;SPAN class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;multi-input structure&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;And here the problem begin, when I try to "Show Sample" this structure here is what I got (XML Representation):&lt;/P&gt; 
&lt;PRE&gt;&amp;lt;Flat:ROOT&amp;gt;
  &amp;lt;Flat:file1&amp;gt;
    &amp;lt;Flat:row&amp;gt;
      &amp;lt;Flat:id&amp;gt;1&amp;lt;/Flat:id&amp;gt;
      &amp;lt;Flat:name&amp;gt;example here&amp;lt;/Flat:name&amp;gt;
      &lt;FONT color="#FF0000"&gt;&amp;lt;Flat:price&amp;gt;50010
2;&amp;lt;/Flat:price&amp;gt;&lt;/FONT&gt;
    &amp;lt;/Flat:row&amp;gt;
    &amp;lt;Flat:row&amp;gt;
      &lt;FONT color="#FF0000"&gt;&amp;lt;Flat:id&amp;gt;second example&amp;lt;/Flat:id&amp;gt;
      &amp;lt;Flat:name&amp;gt;
        &amp;lt;Flat:file2&amp;gt;
          &amp;lt;Flat:row&amp;gt;
            &amp;lt;Flat:description&amp;gt;Something&amp;lt;/Flat:description&amp;gt;
            &amp;lt;Flat:item_id&amp;gt;1&amp;lt;/Flat:item_id&amp;gt;
          &amp;lt;/Flat:row&amp;gt;
          &amp;lt;Flat:row&amp;gt;
            &amp;lt;Flat:description&amp;gt;Something else&amp;lt;/Flat:description&amp;gt;
            &amp;lt;Flat:item_id&amp;gt;2&amp;lt;/Flat:item_id&amp;gt;
          &amp;lt;/Flat:row&amp;gt;
          &amp;lt;Flat:row&amp;gt;
            &amp;lt;Flat:description&amp;gt;Again&amp;lt;/Flat:description&amp;gt;
            &amp;lt;Flat:item_id&amp;gt;2&amp;lt;/Flat:item_id&amp;gt;
          &amp;lt;/Flat:row&amp;gt;
        &amp;lt;/Flat:file2&amp;gt;
      &amp;lt;/Flat:name&amp;gt;&lt;/FONT&gt;
    &amp;lt;/Flat:row&amp;gt;
  &amp;lt;/Flat:file1&amp;gt;
&amp;lt;/Flat:ROOT&amp;gt;&lt;/PRE&gt; 
&lt;P&gt;instead of :&lt;/P&gt; 
&lt;PRE&gt;&amp;lt;Flat:ROOT&amp;gt;
  &amp;lt;Flat:file1&amp;gt;
    &amp;lt;Flat:row&amp;gt;
      &amp;lt;Flat:id&amp;gt;1&amp;lt;/Flat:id&amp;gt;
      &amp;lt;Flat:name&amp;gt;example here&amp;lt;/Flat:name&amp;gt;
      &amp;lt;Flat:price&amp;gt;50010&amp;lt;/Flat:price&amp;gt;
    &amp;lt;/Flat:row&amp;gt;
    &lt;FONT color="#008000"&gt;&amp;lt;Flat:row&amp;gt;
      &amp;lt;Flat:id&amp;gt;2&amp;lt;/Flat:id&amp;gt;
      &amp;lt;Flat:name&amp;gt;second example&amp;lt;/Flat:name&amp;gt;
      &amp;lt;Flat:price&amp;gt;834.12&amp;lt;/Flat:price&amp;gt;
    &amp;lt;/Flat:row&amp;gt;&lt;/FONT&gt;
  &amp;lt;/Flat:file1&amp;gt;
  &amp;lt;Flat:file2&amp;gt;
    &amp;lt;Flat:row&amp;gt;
      &amp;lt;Flat:description&amp;gt;Something&amp;lt;/Flat:description&amp;gt;
      &amp;lt;Flat:item_id&amp;gt;1&amp;lt;/Flat:item_id&amp;gt;
    &amp;lt;/Flat:row&amp;gt;
    &amp;lt;Flat:row&amp;gt;
      &amp;lt;Flat:description&amp;gt;Something else&amp;lt;/Flat:description&amp;gt;
      &amp;lt;Flat:item_id&amp;gt;2&amp;lt;/Flat:item_id&amp;gt;
    &amp;lt;/Flat:row&amp;gt;
    &amp;lt;Flat:row&amp;gt;
      &amp;lt;Flat:description&amp;gt;Again&amp;lt;/Flat:description&amp;gt;
      &amp;lt;Flat:item_id&amp;gt;2&amp;lt;/Flat:item_id&amp;gt;
    &amp;lt;/Flat:row&amp;gt;
  &amp;lt;/Flat:file2&amp;gt;
&amp;lt;/Flat:ROOT&amp;gt;&lt;/PRE&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;As well as an error, due to column shift :&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="error on multi-input structure" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M7vk.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/150334i8D456798AEE2B575/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M7vk.jpg" alt="0683p000009M7vk.jpg" /&gt;&lt;/span&gt;&lt;SPAN class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;error on multi-input structure&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;Can somebody help me resolving this issue ? It seems that the "price" column which is a float is taking the line terminator (LF) and the next row "id".&lt;/P&gt; 
&lt;P&gt;&lt;EM&gt;Notice that this is not happening on the &lt;STRONG&gt;file1&lt;/STRONG&gt; structure :&amp;nbsp;&lt;/EM&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="file1 structure" style="width: 635px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M8BT.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/133252iBB24D96AB9C608EF/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M8BT.png" alt="0683p000009M8BT.png" /&gt;&lt;/span&gt;&lt;SPAN class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;file1 structure&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 04:24:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/TDM-multiple-CSV-inputs/m-p/2198863#M2017</guid>
      <dc:creator>CSen</dc:creator>
      <dc:date>2024-11-16T04:24:19Z</dc:date>
    </item>
    <item>
      <title>Re: TDM multiple CSV inputs</title>
      <link>https://community.qlik.com/t5/Talend-Studio/TDM-multiple-CSV-inputs/m-p/2198864#M2018</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt; 
&lt;P&gt;Could you please file a jira issue and attach your job? Our TDM experts are going to investigate this issue by checking your job and TDM resources.&lt;/P&gt; 
&lt;P&gt;Best regards&lt;/P&gt; 
&lt;P&gt;Sabrina&lt;/P&gt;</description>
      <pubDate>Thu, 24 Oct 2019 09:42:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/TDM-multiple-CSV-inputs/m-p/2198864#M2018</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-10-24T09:42:40Z</dc:date>
    </item>
    <item>
      <title>Re: TDM multiple CSV inputs</title>
      <link>https://community.qlik.com/t5/Talend-Studio/TDM-multiple-CSV-inputs/m-p/2198865#M2019</link>
      <description>Hello,
&lt;BR /&gt;
&lt;BR /&gt;I created a JIRA issue : 
&lt;A href="https://jira.talendforge.org/browse/TDM-7510" target="_blank" rel="nofollow noopener noreferrer"&gt;https://jira.talendforge.org/browse/TDM-7510&lt;/A&gt;
&lt;BR /&gt;And published example of TDM resources needed to reproduce.
&lt;BR /&gt;
&lt;BR /&gt;Best regards,</description>
      <pubDate>Wed, 30 Oct 2019 17:37:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/TDM-multiple-CSV-inputs/m-p/2198865#M2019</guid>
      <dc:creator>CSen</dc:creator>
      <dc:date>2019-10-30T17:37:34Z</dc:date>
    </item>
    <item>
      <title>Re: TDM multiple CSV inputs</title>
      <link>https://community.qlik.com/t5/Talend-Studio/TDM-multiple-CSV-inputs/m-p/2198866#M2020</link>
      <description>&lt;P&gt;Hello &lt;A href="https://community.qlik.com/s/profile/00539000005HttAAAS"&gt;@CSen&lt;/A&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Here is a comment from our TDM expert in your jira issue:&lt;A title="https://jira.talendforge.org/browse/TDM-7510" href="https://jira.talendforge.org/browse/TDM-7510" target="_self" rel="nofollow noopener noreferrer"&gt;https://jira.talendforge.org/browse/TDM-7510&lt;/A&gt;.&lt;/P&gt; 
&lt;P&gt;Could you please take a look at it? Feel free to add your comment in it.&lt;/P&gt; 
&lt;P&gt;Best regards&lt;/P&gt; 
&lt;P&gt;Sabrina&lt;/P&gt;</description>
      <pubDate>Thu, 31 Oct 2019 09:08:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/TDM-multiple-CSV-inputs/m-p/2198866#M2020</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-10-31T09:08:27Z</dc:date>
    </item>
    <item>
      <title>Re: TDM multiple CSV inputs</title>
      <link>https://community.qlik.com/t5/Talend-Studio/TDM-multiple-CSV-inputs/m-p/2198867#M2021</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;Yes I did, it's working fine with the solution provided.&lt;BR /&gt;Just by clearing the "multi-input" structure representations (that was set to Flat) and set all sub-structures to Flat as they were supposed to be.&lt;BR /&gt;&lt;BR /&gt;Thanks for the quick reply,</description>
      <pubDate>Thu, 31 Oct 2019 13:36:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/TDM-multiple-CSV-inputs/m-p/2198867#M2021</guid>
      <dc:creator>CSen</dc:creator>
      <dc:date>2019-10-31T13:36:25Z</dc:date>
    </item>
  </channel>
</rss>

