<?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: Script Debugger not stepping through entire script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Script-Debugger-not-stepping-through-entire-script/m-p/493366#M184541</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am sure that you must have checked if there is an 'Exit Script' or not. Is there any possibility that you can share the code section?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 18 Jul 2013 04:53:43 GMT</pubDate>
    <dc:creator>tresB</dc:creator>
    <dc:date>2013-07-18T04:53:43Z</dc:date>
    <item>
      <title>Script Debugger not stepping through entire script</title>
      <link>https://community.qlik.com/t5/QlikView/Script-Debugger-not-stepping-through-entire-script/m-p/493365#M184540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I apologize if I am somewhat vague, I am new to qlikview and I am taking over for someone else who set up most of my groups currently existing qlikview stuff, so there is a lot that I don't understand yet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have an extract app that I am trying to debug, but when I go through the debugger it ends prematurely. For whatever reason, it seems like regardless of what the data pull is (for each of which I have a select, a store, and then a drop), it goes through one pull and then says the script has been completed with no error. Originally it was an extracting from an excel file, but when I tried removing that and having it go straight to the database tables, it kept doing the same thing just running that first database extract instead of the excel one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jul 2013 21:23:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-Debugger-not-stepping-through-entire-script/m-p/493365#M184540</guid>
      <dc:creator />
      <dc:date>2013-07-17T21:23:42Z</dc:date>
    </item>
    <item>
      <title>Re: Script Debugger not stepping through entire script</title>
      <link>https://community.qlik.com/t5/QlikView/Script-Debugger-not-stepping-through-entire-script/m-p/493366#M184541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am sure that you must have checked if there is an 'Exit Script' or not. Is there any possibility that you can share the code section?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jul 2013 04:53:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-Debugger-not-stepping-through-entire-script/m-p/493366#M184541</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2013-07-18T04:53:43Z</dc:date>
    </item>
    <item>
      <title>Re: Script Debugger not stepping through entire script</title>
      <link>https://community.qlik.com/t5/QlikView/Script-Debugger-not-stepping-through-entire-script/m-p/493367#M184542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sounds like a mssing semicolon or some other syntax problem. Can you post the script?&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, 18 Jul 2013 05:09:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-Debugger-not-stepping-through-entire-script/m-p/493367#M184542</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2013-07-18T05:09:26Z</dc:date>
    </item>
    <item>
      <title>Re: Script Debugger not stepping through entire script</title>
      <link>https://community.qlik.com/t5/QlikView/Script-Debugger-not-stepping-through-entire-script/m-p/493368#M184543</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is essentially what the script looks like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are a bunch of set statements, then:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AIVR:&lt;/P&gt;&lt;P&gt;LOAD Item, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; data, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; data, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; data, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [data], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [data], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [data], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [data]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(biff, embedded labels, table is Untitled$);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STORE AIVR INTO C:\folder\folder\file.qvd;&lt;/P&gt;&lt;P&gt;Drop table AIVR;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the debugger stops here, but the next line of code is the odbc connect&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jul 2013 19:08:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-Debugger-not-stepping-through-entire-script/m-p/493368#M184543</guid>
      <dc:creator />
      <dc:date>2013-07-18T19:08:13Z</dc:date>
    </item>
    <item>
      <title>Re: Script Debugger not stepping through entire script</title>
      <link>https://community.qlik.com/t5/QlikView/Script-Debugger-not-stepping-through-entire-script/m-p/493369#M184544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;It seems that the problem could be in the folder where you want to save the qvd file. QlikView can't create folders (unless you use a macro), so when the script executes it fails with no apparent reason (and with no specific error message) when the target folder hasn't been created previously. So, the easiest solution is to make sure that the target folder (&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;C:\folder\folder\&lt;/SPAN&gt; in your example) is created before executing the script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jaime&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jul 2013 19:59:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-Debugger-not-stepping-through-entire-script/m-p/493369#M184544</guid>
      <dc:creator>jaime_aguilar</dc:creator>
      <dc:date>2013-07-18T19:59:47Z</dc:date>
    </item>
    <item>
      <title>Re: Script Debugger not stepping through entire script</title>
      <link>https://community.qlik.com/t5/QlikView/Script-Debugger-not-stepping-through-entire-script/m-p/493370#M184545</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unfortunately, all of the folders and the qvd itself exist. To clarify, the script doesn't say it fails at any point, it simply only runs through the very first load/store/drop set and then says the script is finished.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jul 2013 17:09:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-Debugger-not-stepping-through-entire-script/m-p/493370#M184545</guid>
      <dc:creator />
      <dc:date>2013-07-19T17:09:11Z</dc:date>
    </item>
    <item>
      <title>Re: Script Debugger not stepping through entire script</title>
      <link>https://community.qlik.com/t5/QlikView/Script-Debugger-not-stepping-through-entire-script/m-p/493371#M184546</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If the script is running thru the first load/store/drop set, that means the issue is not in this set. Its somewhere after this set in the lines that follow this set.....like you said the next line is ODBC connect. the problem may be lying in that connection. you may want to check the subsequent lines.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jul 2013 17:38:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-Debugger-not-stepping-through-entire-script/m-p/493371#M184546</guid>
      <dc:creator />
      <dc:date>2013-07-19T17:38:23Z</dc:date>
    </item>
    <item>
      <title>Re: Script Debugger not stepping through entire script</title>
      <link>https://community.qlik.com/t5/QlikView/Script-Debugger-not-stepping-through-entire-script/m-p/493372#M184547</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If the script is running thru the first load/store/drop set, that means the issue is not in this set. Its somewhere after this set in the lines that follow this set.....like you said the next line is ODBC connect. the problem may be lying in that connection. you may want to check the subsequent lines.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jul 2013 17:38:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-Debugger-not-stepping-through-entire-script/m-p/493372#M184547</guid>
      <dc:creator />
      <dc:date>2013-07-19T17:38:55Z</dc:date>
    </item>
    <item>
      <title>Re: Script Debugger not stepping through entire script</title>
      <link>https://community.qlik.com/t5/QlikView/Script-Debugger-not-stepping-through-entire-script/m-p/493373#M184548</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As I said originally however, if I remove the above posted code and let it go directly to the ODBC connect it successfully connects and goes through the first select/store/drop set sucessfully and again stops saying the script was executed successfully as soon as that first set is complete.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jul 2013 20:52:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-Debugger-not-stepping-through-entire-script/m-p/493373#M184548</guid>
      <dc:creator />
      <dc:date>2013-07-19T20:52:49Z</dc:date>
    </item>
  </channel>
</rss>

