<?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: Reload Action Does Not Work In Access Point! in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Reload-Action-Does-Not-Work-In-Access-Point/m-p/437122#M1304907</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;With a little more research, I found an answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" class="loading" href="https://community.qlik.com/thread/64511" title="http://community.qlik.com/thread/64511"&gt;http://community.qlik.com/thread/64511&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Although it still doesn't trigger for me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 31 Jan 2013 19:52:05 GMT</pubDate>
    <dc:creator>Rich-HHE</dc:creator>
    <dc:date>2013-01-31T19:52:05Z</dc:date>
    <item>
      <title>Reload Action Does Not Work In Access Point!</title>
      <link>https://community.qlik.com/t5/QlikView/Reload-Action-Does-Not-Work-In-Access-Point/m-p/437120#M1304902</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Community,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Background:&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I have QlikView 11 SR2 (x64) and QVS available. My document has a button-action to reload the QVW and it works fine in the Client version.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Problem:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt; Reload action doesn't work when triggered from Access Point.&lt;/P&gt;&lt;P&gt;The problem is not specific to a particular document but seems to exist for all my documents.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried reloading from Access Point using Full Browser as well as IE Plug in but in vain. &lt;/P&gt;&lt;P&gt;I have also tried the same using QV 11 SR1 and it still does not work. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Technical Particulars:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;QV 11 SR2&lt;/P&gt;&lt;P&gt;Version: 11.0.11440.0&lt;/P&gt;&lt;P&gt;Licensed: Yes&lt;/P&gt;&lt;P&gt;Browser: IE with QV Plugin for IE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Has anyone experienced something similar before?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please find my QVW sample attached for reference.&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;-Khaled.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jan 2026 18:19:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reload-Action-Does-Not-Work-In-Access-Point/m-p/437120#M1304902</guid>
      <dc:creator />
      <dc:date>2026-01-26T18:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: Reload Action Does Not Work In Access Point!</title>
      <link>https://community.qlik.com/t5/QlikView/Reload-Action-Does-Not-Work-In-Access-Point/m-p/437121#M1304904</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I also have this problem. I have a Document Trigger OnPostReload to run a Macro. This Macro runs when I reload from the client, but not when I reload from the QMC (trying to schedule reloads to export a graph as an image).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code is as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;public function ExportImage&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ActiveDocument.GetApplication.WaitForIdle&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ActiveDocument.GetSheetByID("SH_MAIN").Activate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; vFolder = "\\ws1\Sites\Corporate\qlikview\"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; fileName = "Temperature.png"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; set obj = ActiveDocument.GetSheetObject("CH_TEMP")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ActiveDocument.GetApplication.WaitForIdle&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; obj.ExportBitmapToFile vFolder &amp;amp; fileName&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end function&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;BR /&gt;I even tried removing the WaitForIdle commands and it still won't run unless I do it from the Client Application.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jan 2013 19:34:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reload-Action-Does-Not-Work-In-Access-Point/m-p/437121#M1304904</guid>
      <dc:creator>Rich-HHE</dc:creator>
      <dc:date>2013-01-31T19:34:59Z</dc:date>
    </item>
    <item>
      <title>Re: Reload Action Does Not Work In Access Point!</title>
      <link>https://community.qlik.com/t5/QlikView/Reload-Action-Does-Not-Work-In-Access-Point/m-p/437122#M1304907</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;With a little more research, I found an answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" class="loading" href="https://community.qlik.com/thread/64511" title="http://community.qlik.com/thread/64511"&gt;http://community.qlik.com/thread/64511&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Although it still doesn't trigger for me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jan 2013 19:52:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reload-Action-Does-Not-Work-In-Access-Point/m-p/437122#M1304907</guid>
      <dc:creator>Rich-HHE</dc:creator>
      <dc:date>2013-01-31T19:52:05Z</dc:date>
    </item>
  </channel>
</rss>

