<?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 Executing scripts by parts in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Executing-scripts-by-parts/m-p/938622#M966775</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;Is it possible to execute a part of a script?.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't want to execute the whole script, only a part of it..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 25 Sep 2015 08:55:39 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2015-09-25T08:55:39Z</dc:date>
    <item>
      <title>Executing scripts by parts</title>
      <link>https://community.qlik.com/t5/QlikView/Executing-scripts-by-parts/m-p/938622#M966775</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;Is it possible to execute a part of a script?.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't want to execute the whole script, only a part of it..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Sep 2015 08:55:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Executing-scripts-by-parts/m-p/938622#M966775</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-09-25T08:55:39Z</dc:date>
    </item>
    <item>
      <title>Re: Executing scripts by parts</title>
      <link>https://community.qlik.com/t5/QlikView/Executing-scripts-by-parts/m-p/938623#M966776</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is just a one off for diagnostics / testing, or a permanent thing ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Sep 2015 08:57:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Executing-scripts-by-parts/m-p/938623#M966776</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-09-25T08:57:36Z</dc:date>
    </item>
    <item>
      <title>Re: Executing scripts by parts</title>
      <link>https://community.qlik.com/t5/QlikView/Executing-scripts-by-parts/m-p/938624#M966777</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You use the Sub and Endsub statements and then use Call Subname; to run the different parts. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for instance, if you are reading 3 tables and storing to disk you can do this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sub Table1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load * from table1;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Store table1 into table1.qvd (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Drop table table1;&lt;/P&gt;&lt;P&gt;endsub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Sub Table2&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;load * from table2;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;BR /&gt;Store table3 into table2.qvd (qvd);&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Drop table table2;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;endsub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Sub Table3&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;load * from table3;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;BR /&gt;Store table3 into table3.qvd (qvd);&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Drop table table2;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;endsub&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Call Table1;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Call Table2;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;//Call Table 3 //This part of the script will not run unless you uncomment this line&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Sep 2015 09:05:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Executing-scripts-by-parts/m-p/938624#M966777</guid>
      <dc:creator>simenkg</dc:creator>
      <dc:date>2015-09-25T09:05:00Z</dc:date>
    </item>
    <item>
      <title>Re: Executing scripts by parts</title>
      <link>https://community.qlik.com/t5/QlikView/Executing-scripts-by-parts/m-p/938625#M966778</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For testing purposes, you can re-order the tabs and use the command "Exit Script;" to stop execution at that point.&lt;/P&gt;&lt;P&gt;If you start the debugger, you can also limit the load sizes, step through the script and monitor variables and $ expansions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Sep 2015 09:08:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Executing-scripts-by-parts/m-p/938625#M966778</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-09-25T09:08:53Z</dc:date>
    </item>
    <item>
      <title>Re: Executing scripts by parts</title>
      <link>https://community.qlik.com/t5/QlikView/Executing-scripts-by-parts/m-p/938626#M966779</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are working with lots of tabs and want control over them, you'll probably put all your Calls in one tab.&amp;nbsp; Just make sure you demote that tab right to the end of your script since the Sub has to be declared before use.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Sep 2015 10:17:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Executing-scripts-by-parts/m-p/938626#M966779</guid>
      <dc:creator />
      <dc:date>2015-09-25T10:17:47Z</dc:date>
    </item>
    <item>
      <title>Re: Executing scripts by parts</title>
      <link>https://community.qlik.com/t5/QlikView/Executing-scripts-by-parts/m-p/938627#M966780</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can also make use of&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;if then &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;else if &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;end if &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;based on the conditions will can manage the execution of the script&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Sep 2015 11:14:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Executing-scripts-by-parts/m-p/938627#M966780</guid>
      <dc:creator>avinashelite</dc:creator>
      <dc:date>2015-09-25T11:14:13Z</dc:date>
    </item>
    <item>
      <title>Re: Executing scripts by parts</title>
      <link>https://community.qlik.com/t5/QlikView/Executing-scripts-by-parts/m-p/938628#M966781</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Open the offending Qlikview.&lt;/P&gt;&lt;P&gt;File-&amp;gt;Save As-&amp;gt; 'Test' (or some other name that will clone it and leave the original alone)&lt;/P&gt;&lt;P&gt;Delete the good tabs, test run the offending tab(s). (Keep your section access and connection strings though, and mapping loads you might have at the start of your script. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;)&lt;/P&gt;&lt;P&gt;Fix and copy/paste your repaired script back to the main QVW.&lt;/P&gt;&lt;P&gt;Rinse and repeat until you get all the kinks out - though you can just delete the repaired tabs from your test-clone now to keep going from whatever other snags you encounter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My main extract qlikview failed about 20 tabs in due to a bad table reference I overlooked after doing an inner join overhaul to better limit the data it's pulling from the database.&amp;nbsp; I did the above steps and kicked off the last dozen or so tabs from the test-clone I made.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a nice day!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Feb 2017 04:20:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Executing-scripts-by-parts/m-p/938628#M966781</guid>
      <dc:creator>stevelord</dc:creator>
      <dc:date>2017-02-14T04:20:13Z</dc:date>
    </item>
  </channel>
</rss>

