<?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: Show Last Reload and Next Reload in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Show-Last-Reload-and-Next-Reload/m-p/743710#M265559</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN lang="EN-GB" style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;That's the thing. I don't see that option:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;I’ve tried different QV 11 environments, but I don’t see it….. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Knipsel.GIF" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/86007_Knipsel.GIF" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 08 May 2015 05:48:24 GMT</pubDate>
    <dc:creator>martijn</dc:creator>
    <dc:date>2015-05-08T05:48:24Z</dc:date>
    <item>
      <title>Show Last Reload and Next Reload</title>
      <link>https://community.qlik.com/t5/QlikView/Show-Last-Reload-and-Next-Reload/m-p/743702#M265551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; ------------------------------&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 12pt; font-family: Times New Roman;"&gt;='Data Updated on: '&lt;BR /&gt; &amp;amp;vLastReload&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; ---------------------------------&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 12pt; font-family: Times New Roman;"&gt;The above statement tells me when the document was last reloaded. How do i also show when the next reload will be or can it not do that?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 12pt; font-family: Times New Roman;"&gt;So last reload was x and the next reload is y.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 12pt; font-family: Times New Roman;"&gt;Regards&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 12pt; font-family: Times New Roman;"&gt;Tyrone&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Mar 2015 16:42:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-Last-Reload-and-Next-Reload/m-p/743702#M265551</guid>
      <dc:creator />
      <dc:date>2015-03-04T16:42:48Z</dc:date>
    </item>
    <item>
      <title>Re: Show Last Reload and Next Reload</title>
      <link>https://community.qlik.com/t5/QlikView/Show-Last-Reload-and-Next-Reload/m-p/743703#M265552</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Qlikview documents are usually not clairvoyant so they won't know when they will be reloaded again. But if you know this date/time in advance you could create another variable and give it this value. Perhaps you reload your document on an hourly basis:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Start of script&lt;/P&gt;&lt;P&gt;LET vNextReloadTime = timestamp(ReloadTime() + 1/24,'DD-MM-YYYY hh:mm:ss');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;...rest of the script...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// End of script&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Mar 2015 12:53:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-Last-Reload-and-Next-Reload/m-p/743703#M265552</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2015-03-05T12:53:48Z</dc:date>
    </item>
    <item>
      <title>Re: Show Last Reload and Next Reload</title>
      <link>https://community.qlik.com/t5/QlikView/Show-Last-Reload-and-Next-Reload/m-p/743704#M265553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Instead of using a variable for your last reload date+time, you can also use a function for that:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;ReloadTime&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;() &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Since it is hard to know when the next reload will be, I would agree with the previous replier about guessing the "next reload date+time".&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Mar 2015 14:02:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-Last-Reload-and-Next-Reload/m-p/743704#M265553</guid>
      <dc:creator>oknotsen</dc:creator>
      <dc:date>2015-03-05T14:02:00Z</dc:date>
    </item>
    <item>
      <title>Re: Show Last Reload and Next Reload</title>
      <link>https://community.qlik.com/t5/QlikView/Show-Last-Reload-and-Next-Reload/m-p/743705#M265554</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks.&amp;nbsp; how do i add that into my expression&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;='Data Updated on: '&lt;BR /&gt; &amp;amp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;vLastReload &lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #808080; font-size: 8pt;"&gt;Next reload will be:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET vNextReloadTime = timestamp(ReloadTime() + 1/24,'DD-MM-YYYY hh:mm:ss');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tyrone&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Mar 2015 15:40:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-Last-Reload-and-Next-Reload/m-p/743705#M265554</guid>
      <dc:creator />
      <dc:date>2015-03-05T15:40:44Z</dc:date>
    </item>
    <item>
      <title>Re: Show Last Reload and Next Reload</title>
      <link>https://community.qlik.com/t5/QlikView/Show-Last-Reload-and-Next-Reload/m-p/743706#M265555</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The LET statement is part of the script. When you reload the document the variable vNextReloadTime will be given its value. You can use the variable then in expressions in the front end:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;='Data last updated on ' &amp;amp; vLastReload &amp;amp; chr(10) &amp;amp; chr(10) &amp;amp; 'Next reload will be at ' &amp;amp; vNextReloadTime&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Mar 2015 17:44:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-Last-Reload-and-Next-Reload/m-p/743706#M265555</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2015-03-05T17:44:00Z</dc:date>
    </item>
    <item>
      <title>Re: Show Last Reload and Next Reload</title>
      <link>https://community.qlik.com/t5/QlikView/Show-Last-Reload-and-Next-Reload/m-p/743707#M265556</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;While not showing it in Document itself, if you click "View Details" in Access Point, you can see the scheduled time of the next reload.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://masterssummit.com" rel="nofollow"&gt;http://masterssummit.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://robwunderlich.com" rel="nofollow"&gt;http://robwunderlich.com&lt;/A&gt;&lt;IMG alt="2015-03-05_11-05-58.jpg" class="image-1 jive-image" src="https://community.qlik.com/legacyfs/online/80035_2015-03-05_11-05-58.jpg" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Mar 2015 19:08:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-Last-Reload-and-Next-Reload/m-p/743707#M265556</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2015-03-05T19:08:33Z</dc:date>
    </item>
    <item>
      <title>Re: Show Last Reload and Next Reload</title>
      <link>https://community.qlik.com/t5/QlikView/Show-Last-Reload-and-Next-Reload/m-p/743708#M265557</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe a stupid question, but where can I find this option? I have serveral QV versions, but I'm not able to show the Next Update.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Martijn&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2015 10:02:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-Last-Reload-and-Next-Reload/m-p/743708#M265557</guid>
      <dc:creator>martijn</dc:creator>
      <dc:date>2015-05-06T10:02:49Z</dc:date>
    </item>
    <item>
      <title>Re: Show Last Reload and Next Reload</title>
      <link>https://community.qlik.com/t5/QlikView/Show-Last-Reload-and-Next-Reload/m-p/743709#M265558</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Martijn,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The "View Details" option should be available is the Access Point document list if you are running QV 11. Do you see the option?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 May 2015 23:36:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-Last-Reload-and-Next-Reload/m-p/743709#M265558</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2015-05-07T23:36:28Z</dc:date>
    </item>
    <item>
      <title>Re: Show Last Reload and Next Reload</title>
      <link>https://community.qlik.com/t5/QlikView/Show-Last-Reload-and-Next-Reload/m-p/743710#M265559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN lang="EN-GB" style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;That's the thing. I don't see that option:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;I’ve tried different QV 11 environments, but I don’t see it….. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Knipsel.GIF" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/86007_Knipsel.GIF" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 May 2015 05:48:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-Last-Reload-and-Next-Reload/m-p/743710#M265559</guid>
      <dc:creator>martijn</dc:creator>
      <dc:date>2015-05-08T05:48:24Z</dc:date>
    </item>
    <item>
      <title>Re: Show Last Reload and Next Reload</title>
      <link>https://community.qlik.com/t5/QlikView/Show-Last-Reload-and-Next-Reload/m-p/743711#M265560</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I’ve done some additional research. Most off our dashboards are refreshed based on a successful event from another task. That is why it isn’t shown. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When a new schedule is made, the next reload time will be shown after the first reload. And the&amp;nbsp; most important part: you have to have a publisher license &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/plain.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 May 2015 09:46:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-Last-Reload-and-Next-Reload/m-p/743711#M265560</guid>
      <dc:creator>martijn</dc:creator>
      <dc:date>2015-05-08T09:46:33Z</dc:date>
    </item>
    <item>
      <title>Re: Show Last Reload and Next Reload</title>
      <link>https://community.qlik.com/t5/QlikView/Show-Last-Reload-and-Next-Reload/m-p/743712#M265561</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.3333px;"&gt;Hi Gysbert&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;In qlikview server we can find the task XML file which has the recurrence information. We can use that file as input and add the recurrance time to last reload time to get next reload time.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Do you think it is the right way of doing it?&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Thanks&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Venkata S&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Nov 2017 19:31:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-Last-Reload-and-Next-Reload/m-p/743712#M265561</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-11-06T19:31:18Z</dc:date>
    </item>
    <item>
      <title>Re: Show Last Reload and Next Reload</title>
      <link>https://community.qlik.com/t5/QlikView/Show-Last-Reload-and-Next-Reload/m-p/743713#M265562</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Should work for any tasks that have a time based schedule. If the task depends on another event it will be more complicated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Nov 2017 08:06:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-Last-Reload-and-Next-Reload/m-p/743713#M265562</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2017-11-07T08:06:31Z</dc:date>
    </item>
  </channel>
</rss>

