<?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: Tfilterrow to Tftpget in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Tfilterrow-to-Tftpget/m-p/2341153#M109130</link>
    <description>&lt;P&gt;I am afraid you need a tUnite component between tFTPFileProperties and tMap_2 to merge all files before filtering them. After you filter the new files, you can store them into memory using tHashOutput, then iterate this list one by one in next subjob. &lt;/P&gt;&lt;P&gt;...tFTPFileList-iterate--tFTPFileProperties--tUnite--tMap--tfilterRow--tHashOutput&lt;/P&gt;&lt;P&gt;****** |onsubjobok&lt;/P&gt;&lt;P&gt;tHashInput--main(row5)--tFlowToIterate--tFTPGet&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;on tFTPGet, you can set the file masking: ((String)globalMap.get("row5.basename"))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope it helps!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shong&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 06 Jan 2023 08:15:13 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2023-01-06T08:15:13Z</dc:date>
    <item>
      <title>Tfilterrow to Tftpget</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Tfilterrow-to-Tftpget/m-p/2341152#M109129</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to upload specific files from a ftp server. Each day I need to check new files and upload it to another location.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I found how to filter rows to have the list of files and filter its by date but I don't know how to use this list with tFTPGet mask.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here m'y job&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000bFmOEAA0.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/153248iA5CEEE931221E8EA/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000bFmOEAA0.png" alt="0695b00000bFmOEAA0.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;And I use that as file masking : ((String)globalMap.get("row5.basename"))&lt;/P&gt;&lt;P&gt;But it's only return null values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If any of you got a solution it will be great.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2024 22:13:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Tfilterrow-to-Tftpget/m-p/2341152#M109129</guid>
      <dc:creator>JFournier1632810800</dc:creator>
      <dc:date>2024-11-15T22:13:21Z</dc:date>
    </item>
    <item>
      <title>Re: Tfilterrow to Tftpget</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Tfilterrow-to-Tftpget/m-p/2341153#M109130</link>
      <description>&lt;P&gt;I am afraid you need a tUnite component between tFTPFileProperties and tMap_2 to merge all files before filtering them. After you filter the new files, you can store them into memory using tHashOutput, then iterate this list one by one in next subjob. &lt;/P&gt;&lt;P&gt;...tFTPFileList-iterate--tFTPFileProperties--tUnite--tMap--tfilterRow--tHashOutput&lt;/P&gt;&lt;P&gt;****** |onsubjobok&lt;/P&gt;&lt;P&gt;tHashInput--main(row5)--tFlowToIterate--tFTPGet&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;on tFTPGet, you can set the file masking: ((String)globalMap.get("row5.basename"))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope it helps!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shong&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jan 2023 08:15:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Tfilterrow-to-Tftpget/m-p/2341153#M109130</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-01-06T08:15:13Z</dc:date>
    </item>
    <item>
      <title>Re: Tfilterrow to Tftpget</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Tfilterrow-to-Tftpget/m-p/2341154#M109131</link>
      <description>&lt;P&gt;Hello Shong,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your help ! Works pretty well now. Here the final job.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000bFzoLAAS.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/157579iFACE6FE8A9B8D4B6/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000bFzoLAAS.png" alt="0695b00000bFzoLAAS.png" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jan 2023 08:54:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Tfilterrow-to-Tftpget/m-p/2341154#M109131</guid>
      <dc:creator>JFournier1632810800</dc:creator>
      <dc:date>2023-01-06T08:54:41Z</dc:date>
    </item>
  </channel>
</rss>

