<?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: [resolved] Get the lookup inner join rejected row count in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/resolved-Get-the-lookup-inner-join-rejected-row-count/m-p/2276019#M52230</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt; 
&lt;P&gt;I am getting null when I use this to print count&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="c1.PNG" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LzSl.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/153882i4981A119214E0929/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LzSl.png" alt="0683p000009LzSl.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 08 Sep 2018 17:12:35 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-09-08T17:12:35Z</dc:date>
    <item>
      <title>[resolved] Get the lookup inner join rejected row count</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Get-the-lookup-inner-join-rejected-row-count/m-p/2276013#M52224</link>
      <description>Hi,&lt;BR /&gt;Is there a direct way to get the lookup inner join reject row count in Talend Open Studio for Data Integration?&amp;nbsp;&lt;BR /&gt;Thanks and Regards,&lt;BR /&gt;Asanka.</description>
      <pubDate>Wed, 10 Dec 2014 02:37:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Get-the-lookup-inner-join-rejected-row-count/m-p/2276013#M52224</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-12-10T02:37:31Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Get the lookup inner join rejected row count</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Get-the-lookup-inner-join-rejected-row-count/m-p/2276014#M52225</link>
      <description>If you output the reject rows to a file or database, there is a global variable that counts the total number of rows are written on output component, for example: 
&lt;BR /&gt;...tMap..reject--tFileOutputDelimited 
&lt;BR /&gt;You can get the number of reject rows by using this global variable: 
&lt;BR /&gt; 
&lt;PRE&gt;((Integer)globalMap.get("tFileOutputDelimited_1_NB_LINE"))&lt;/PRE&gt; 
&lt;BR /&gt;Shong</description>
      <pubDate>Wed, 10 Dec 2014 04:44:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Get-the-lookup-inner-join-rejected-row-count/m-p/2276014#M52225</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-12-10T04:44:05Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Get the lookup inner join rejected row count</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Get-the-lookup-inner-join-rejected-row-count/m-p/2276015#M52226</link>
      <description>Hi Shong, 
&lt;BR /&gt;Thanks for your reply.&amp;nbsp; 
&lt;BR /&gt;In my case I'm writing the inner join rejected rows to an excel file (tFileOutputExcel). In my Talend Job there are several inner join rejects, but all are written to single excel file, but different sheets. So is there a way to get the number of rows written to a particular sheet? 
&lt;BR /&gt;Thanks and Regards, 
&lt;BR /&gt;Asanka.</description>
      <pubDate>Wed, 10 Dec 2014 05:28:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Get-the-lookup-inner-join-rejected-row-count/m-p/2276015#M52226</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-12-10T05:28:48Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Get the lookup inner join rejected row count</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Get-the-lookup-inner-join-rejected-row-count/m-p/2276016#M52227</link>
      <description>There is no global variable for sheet. You can define a counter on tJavaFlex to populate the total number of each rejected rows. For example: 
&lt;BR /&gt;...tMap..reject..tJavaFlex--tFileOutputExcel 
&lt;BR /&gt;in the beginning part of tJavaFlex, define a counter. 
&lt;BR /&gt; 
&lt;PRE&gt;int counter=0;&lt;/PRE&gt; 
&lt;BR /&gt;in the main part: 
&lt;BR /&gt; 
&lt;PRE&gt;counter++&lt;/PRE&gt; 
&lt;BR /&gt;in the end part, store the counter to a global variable or context variable for used later. 
&lt;BR /&gt; 
&lt;PRE&gt;context.nb_reject1=counter;&lt;BR /&gt;&lt;/PRE&gt; 
&lt;BR /&gt;Best regards 
&lt;BR /&gt;Shong</description>
      <pubDate>Thu, 11 Dec 2014 09:39:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Get-the-lookup-inner-join-rejected-row-count/m-p/2276016#M52227</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-12-11T09:39:06Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Get the lookup inner join rejected row count</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Get-the-lookup-inner-join-rejected-row-count/m-p/2276017#M52228</link>
      <description>Hi Shong,
&lt;BR /&gt;Thank you very much for your reply. Your suggestion will work in my scenario.
&lt;BR /&gt;Thanks and Regards,
&lt;BR /&gt;Asanka.&amp;nbsp;</description>
      <pubDate>Mon, 15 Dec 2014 02:05:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Get-the-lookup-inner-join-rejected-row-count/m-p/2276017#M52228</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-12-15T02:05:04Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Get the lookup inner join rejected row count</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Get-the-lookup-inner-join-rejected-row-count/m-p/2276018#M52229</link>
      <description>Great! Thanks for your feedback.
&lt;BR /&gt;Best regards
&lt;BR /&gt;Shong</description>
      <pubDate>Mon, 15 Dec 2014 02:58:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Get-the-lookup-inner-join-rejected-row-count/m-p/2276018#M52229</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-12-15T02:58:09Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Get the lookup inner join rejected row count</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Get-the-lookup-inner-join-rejected-row-count/m-p/2276019#M52230</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt; 
&lt;P&gt;I am getting null when I use this to print count&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="c1.PNG" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LzSl.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/153882i4981A119214E0929/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LzSl.png" alt="0683p000009LzSl.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 08 Sep 2018 17:12:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Get-the-lookup-inner-join-rejected-row-count/m-p/2276019#M52230</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-09-08T17:12:35Z</dc:date>
    </item>
  </channel>
</rss>

