<?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 Load specific QVD file, only at button click in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Load-specific-QVD-file-only-at-button-click/m-p/9457#M1428</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am developing a QlikView application that needs a specific data load, only when a button is pressed. My application contains a load script that loads the normal data and I need to load some extra data, only needed if a button is pressed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I execute a specific load script after pressing a button?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 26 Mar 2018 11:13:29 GMT</pubDate>
    <dc:creator>qlikmark1990</dc:creator>
    <dc:date>2018-03-26T11:13:29Z</dc:date>
    <item>
      <title>Load specific QVD file, only at button click</title>
      <link>https://community.qlik.com/t5/QlikView/Load-specific-QVD-file-only-at-button-click/m-p/9457#M1428</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am developing a QlikView application that needs a specific data load, only when a button is pressed. My application contains a load script that loads the normal data and I need to load some extra data, only needed if a button is pressed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I execute a specific load script after pressing a button?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Mar 2018 11:13:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-specific-QVD-file-only-at-button-click/m-p/9457#M1428</guid>
      <dc:creator>qlikmark1990</dc:creator>
      <dc:date>2018-03-26T11:13:29Z</dc:date>
    </item>
    <item>
      <title>Re: Load specific QVD file, only at button click</title>
      <link>https://community.qlik.com/t5/QlikView/Load-specific-QVD-file-only-at-button-click/m-p/9458#M1429</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;QlikView cannot execute split loads. Probably because a data model has to be created in one big sweep, and when this is done, the model and the data in it becomes immutable. Also keep in mind that in QV Desktop a reload only looks like being initiated by the end-user, but in the Server environment the two steps are separated and handled by different services without any means of communication. This is the basic architecture of QlikView.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, there may be a few workarounds which you can evaluate on futness for your purpose:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;A href="https://help.qlik.com/en-US/qlikview/November2017/Subsystems/Client/Content/DirectDiscovery/direct-discovery-introduction.htm"&gt;Direct Discovery&lt;/A&gt; lets you import live data directly from the user interface through an RDBMS connection&lt;/LI&gt;&lt;LI&gt;A &lt;A href="https://help.qlik.com/en-US/qlikview/November2017/Subsystems/Client/Content/Partial%20Reload.htm"&gt;Partial Reload&lt;/A&gt; offers variations on the script execution theme. Adapting this to load additional data initiated by a button press will only work from inside QV Desktop but it may be useful to you.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Mar 2018 11:38:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-specific-QVD-file-only-at-button-click/m-p/9458#M1429</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2018-03-26T11:38:32Z</dc:date>
    </item>
    <item>
      <title>Re: Load specific QVD file, only at button click</title>
      <link>https://community.qlik.com/t5/QlikView/Load-specific-QVD-file-only-at-button-click/m-p/9459#M1430</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mark! You can have a script estructure as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Normal Load of data&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF vMode = 1 then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;EM&gt;Load extra data&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;ENDIF&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;More normal load of data if needed&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;And you should configure the button adding 3 actions:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1.- Set variable vMode to value 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2.- Execute the scrip&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3.- Set variable vMode to value 0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the extra data is consistent with your data model then this should work. Hope it helps!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jaime.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Mar 2018 13:19:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-specific-QVD-file-only-at-button-click/m-p/9459#M1430</guid>
      <dc:creator>jaibau1993</dc:creator>
      <dc:date>2018-03-26T13:19:47Z</dc:date>
    </item>
  </channel>
</rss>

