<?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: Reloading time in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Reloading-time/m-p/1364379#M613731</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can refer the url mentioned in my thread. It will help to monitor the reload time.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Jul 2017 08:45:24 GMT</pubDate>
    <dc:creator>Siva_Sankar</dc:creator>
    <dc:date>2017-07-25T08:45:24Z</dc:date>
    <item>
      <title>Reloading time</title>
      <link>https://community.qlik.com/t5/QlikView/Reloading-time/m-p/1364373#M613723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Qlikers,&lt;/P&gt;&lt;P&gt;I would like to know how can i build a &lt;STRONG style="font-size: 12pt;"&gt;control panel to check the Reloading time of any Qlik file&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;I've used the FileTime function on script to catch the Modified Time of every Qlik File located in a folder.&lt;/P&gt;&lt;P&gt;My purpose is catching the Reloading Time of a Qlik File because it's different from the Modified Time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you any idea??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jul 2017 07:59:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reloading-time/m-p/1364373#M613723</guid>
      <dc:creator />
      <dc:date>2017-07-25T07:59:07Z</dc:date>
    </item>
    <item>
      <title>Re: Reloading time</title>
      <link>https://community.qlik.com/t5/QlikView/Reloading-time/m-p/1364374#M613725</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Michele,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could store the reloadtime into a single QVD in all your load scripts. That way you would just have to load the QVD to get all current (and past!) reloadtimes for your documents.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope&amp;nbsp; this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With kind regards,&lt;/P&gt;&lt;P&gt;Ronald&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jul 2017 08:05:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reloading-time/m-p/1364374#M613725</guid>
      <dc:creator>RonaldDoes</dc:creator>
      <dc:date>2017-07-25T08:05:35Z</dc:date>
    </item>
    <item>
      <title>Re: Reloading time</title>
      <link>https://community.qlik.com/t5/QlikView/Reloading-time/m-p/1364375#M613727</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You may load only the xml-part of an application and then check for a variable like&lt;/P&gt;&lt;P&gt;"LastReloadTimeISO"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jul 2017 08:09:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reloading-time/m-p/1364375#M613727</guid>
      <dc:creator>prieper</dc:creator>
      <dc:date>2017-07-25T08:09:47Z</dc:date>
    </item>
    <item>
      <title>Re: Reloading time</title>
      <link>https://community.qlik.com/t5/QlikView/Reloading-time/m-p/1364376#M613728</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To this end, I've written the following code into a txt-file and include that into all my scripts with a single include statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="php" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_1500970173241881 jive_text_macro" jivemacro_uid="_1500970173241881" modifiedtitle="true"&gt;
&lt;P&gt;SUB ReloadInfo (_Dashboard,_ReloadStart,_ReloadEnd,_DataSource,_DataSourceMaxTimeStamp)&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Reloadinfo:&lt;/P&gt;
&lt;P&gt;LOAD * INLINE [&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dashboard, ReloadStart, ReloadEnd, DataSource, DataSourceMaxTimeStamp&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; '$(_Dashboard)','$(_ReloadStart)','$(_ReloadEnd)','$(_DataSource)','$(_DataSourceMaxTimeStamp)'&lt;/P&gt;
&lt;P&gt;];&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Concatenate LOAD&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dashboard,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ReloadStart,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ReloadEnd,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DataSource,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DataSourceMaxTimeStamp&lt;/P&gt;
&lt;P&gt;FROM&lt;/P&gt;
&lt;P&gt;[&lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;$(vQVDPath)&lt;/SPAN&gt;ReloadInfo.qvd]&lt;/P&gt;
&lt;P&gt;(qvd);&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;STORE Reloadinfo into [$(vQVDPath)ReloadInfo\ReloadInfo.qvd] (qvd);&lt;/P&gt;
&lt;P&gt;DROP Table Reloadinfo;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;END SUB&lt;/P&gt;

&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Start your script with:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="php" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_15009702276795817 jive_text_macro" jivemacro_uid="_15009702276795817"&gt;
&lt;P&gt;$(Must_Include=..\Include\reloadtime.txt);&lt;/P&gt;

&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And call your sub when you're sure the reload was successful::&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="php" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_15009703185369684" jivemacro_uid="_15009703185369684"&gt;
&lt;P&gt;CALL ReloadInfo (DocumentName(),'$(vReloadStartTime)','$(vReloadEndTime)','somesourcesystem', 'maxsourcedate');&lt;/P&gt;

&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jul 2017 08:12:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reloading-time/m-p/1364376#M613728</guid>
      <dc:creator>RonaldDoes</dc:creator>
      <dc:date>2017-07-25T08:12:16Z</dc:date>
    </item>
    <item>
      <title>Re: Reloading time</title>
      <link>https://community.qlik.com/t5/QlikView/Reloading-time/m-p/1364377#M613729</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-4272"&gt;Dashboard Change Monitoring&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://qlikviewcookbook.com/2010/09/monitoring-the-reload-schedule/" title="https://qlikviewcookbook.com/2010/09/monitoring-the-reload-schedule/"&gt;https://qlikviewcookbook.com/2010/09/monitoring-the-reload-schedule/ &lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jul 2017 08:40:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reloading-time/m-p/1364377#M613729</guid>
      <dc:creator>Siva_Sankar</dc:creator>
      <dc:date>2017-07-25T08:40:20Z</dc:date>
    </item>
    <item>
      <title>Re: Reloading time</title>
      <link>https://community.qlik.com/t5/QlikView/Reloading-time/m-p/1364378#M613730</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Ronald to your quick answer.&lt;/P&gt;&lt;P&gt;This solution has been the first way that I've tried but unfortunately not every user can store a QVD in the QVD folder.&lt;/P&gt;&lt;P&gt;There is a problem of security!!!&lt;/P&gt;&lt;P&gt;I need an external Control Panel that read the reloading time of any Qlik file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jul 2017 08:41:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reloading-time/m-p/1364378#M613730</guid>
      <dc:creator />
      <dc:date>2017-07-25T08:41:10Z</dc:date>
    </item>
    <item>
      <title>Re: Reloading time</title>
      <link>https://community.qlik.com/t5/QlikView/Reloading-time/m-p/1364379#M613731</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can refer the url mentioned in my thread. It will help to monitor the reload time.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jul 2017 08:45:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reloading-time/m-p/1364379#M613731</guid>
      <dc:creator>Siva_Sankar</dc:creator>
      <dc:date>2017-07-25T08:45:24Z</dc:date>
    </item>
    <item>
      <title>Re: Reloading time</title>
      <link>https://community.qlik.com/t5/QlikView/Reloading-time/m-p/1364380#M613732</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks sivasankar,&lt;/P&gt;&lt;P&gt;i've looked on the URL but Rob use FileTime function like me.&lt;/P&gt;&lt;P&gt;I need to check the Reloading time that is different from FileTime.&lt;/P&gt;&lt;P&gt;The Scheduler launch the reload of each Qlik file but where something goes wrong the reload is stopped.&lt;/P&gt;&lt;P&gt;The Modified Time change but the Reloading Time remain unchanged.&lt;/P&gt;&lt;P&gt;I want to know when a reload doesn't work till the ending.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jul 2017 09:42:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reloading-time/m-p/1364380#M613732</guid>
      <dc:creator />
      <dc:date>2017-07-25T09:42:06Z</dc:date>
    </item>
    <item>
      <title>Re: Reloading time</title>
      <link>https://community.qlik.com/t5/QlikView/Reloading-time/m-p/1364381#M613733</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;is this helpful?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Aufnahme_2017_05_17_14_11_13_10.gif" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/171270_Aufnahme_2017_05_17_14_11_13_10.gif" style="height: 348px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jul 2017 09:46:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reloading-time/m-p/1364381#M613733</guid>
      <dc:creator>Frank_Hartmann</dc:creator>
      <dc:date>2017-07-25T09:46:51Z</dc:date>
    </item>
    <item>
      <title>Re: Reloading time</title>
      <link>https://community.qlik.com/t5/QlikView/Reloading-time/m-p/1364382#M613734</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;did you try with reloading document log after reloading dashabord.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;logic like below&lt;/P&gt;&lt;P&gt;1: your dashboard loading script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then&lt;/P&gt;&lt;P&gt;2: load document log of that file &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prashant S.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jul 2017 09:56:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reloading-time/m-p/1364382#M613734</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2017-07-25T09:56:51Z</dc:date>
    </item>
  </channel>
</rss>

