<?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 Only get new data in Qlik NPrinting</title>
    <link>https://community.qlik.com/t5/Qlik-NPrinting/Only-get-new-data/m-p/1271763#M14721</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a QVW that I use for sending reports through nprinting. This QVD is scheduled to run every 5 min to catch new information. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to in npritning send only the new information between the latest interval so to speak.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't know maybe I explain myself badly. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But if they get a file 09:00 with some information and new information comes in 12:05 they only want this new information not the info that was in the old file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 02 Dec 2016 12:34:00 GMT</pubDate>
    <dc:creator />
    <dc:date>2016-12-02T12:34:00Z</dc:date>
    <item>
      <title>Only get new data</title>
      <link>https://community.qlik.com/t5/Qlik-NPrinting/Only-get-new-data/m-p/1271763#M14721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a QVW that I use for sending reports through nprinting. This QVD is scheduled to run every 5 min to catch new information. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to in npritning send only the new information between the latest interval so to speak.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't know maybe I explain myself badly. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But if they get a file 09:00 with some information and new information comes in 12:05 they only want this new information not the info that was in the old file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Dec 2016 12:34:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-NPrinting/Only-get-new-data/m-p/1271763#M14721</guid>
      <dc:creator />
      <dc:date>2016-12-02T12:34:00Z</dc:date>
    </item>
    <item>
      <title>Re: Only get new data</title>
      <link>https://community.qlik.com/t5/Qlik-NPrinting/Only-get-new-data/m-p/1271764#M14722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Best way would be is to add a flag in Qlikview for the latest data and in NPritning apply the filter for latest flag so that you could have more flexibility. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Dec 2016 12:46:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-NPrinting/Only-get-new-data/m-p/1271764#M14722</guid>
      <dc:creator>avinashelite</dc:creator>
      <dc:date>2016-12-02T12:46:35Z</dc:date>
    </item>
    <item>
      <title>Re: Only get new data</title>
      <link>https://community.qlik.com/t5/Qlik-NPrinting/Only-get-new-data/m-p/1271765#M14723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sounds great how would Implement this flag?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Dec 2016 12:50:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-NPrinting/Only-get-new-data/m-p/1271765#M14723</guid>
      <dc:creator />
      <dc:date>2016-12-02T12:50:27Z</dc:date>
    </item>
    <item>
      <title>Re: Only get new data</title>
      <link>https://community.qlik.com/t5/Qlik-NPrinting/Only-get-new-data/m-p/1271766#M14724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't have info about your data ..&lt;/P&gt;&lt;P&gt;If you have implemented incremental logic then based on the time stamp you can create this flag like &lt;/P&gt;&lt;P&gt;Let vLastReload=&amp;nbsp; //your last reload time&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then in the data table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD *,&lt;/P&gt;&lt;P&gt;If(date/Time_field&amp;nbsp; &amp;gt;&lt;SPAN style="font-size: 13.3333px;"&gt;vLastReload,1,0) as NPritign_Flag&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or if its on the key then you might be using to tables &lt;/P&gt;&lt;P&gt;Old_date:&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;Key,&lt;/P&gt;&lt;P&gt;if(&lt;SPAN style="font-size: 13.3333px;"&gt;NPritign_Flag&lt;/SPAN&gt;=1,0,0) as&amp;nbsp; &lt;SPAN style="font-size: 13.3333px;"&gt;NPritign_Flag&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;from &lt;/P&gt;&lt;P&gt;History;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;New:&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;LOAD &lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Key,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;1 as&amp;nbsp; &lt;SPAN style="font-size: 13.3333px;"&gt;NPritign_Flag&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;...&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;from &lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;New&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;where exist(Key,Key);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope you got the idea &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Dec 2016 12:57:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-NPrinting/Only-get-new-data/m-p/1271766#M14724</guid>
      <dc:creator>avinashelite</dc:creator>
      <dc:date>2016-12-02T12:57:39Z</dc:date>
    </item>
  </channel>
</rss>

