<?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 not found the table in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Reload-not-found-the-table/m-p/2498542#M102893</link>
    <description>&lt;P&gt;You need to apply it everywhere - any you may have missed anyone, maybe within the join-reference.&lt;/P&gt;
&lt;P&gt;Looking within the document-log will show the exact place of which iteration where the error happens. A shortcut in the above example may be just to search per CTRL + F for the term sections.&lt;/P&gt;</description>
    <pubDate>Wed, 18 Dec 2024 10:10:21 GMT</pubDate>
    <dc:creator>marcus_sommer</dc:creator>
    <dc:date>2024-12-18T10:10:21Z</dc:date>
    <item>
      <title>Reload not found the table</title>
      <link>https://community.qlik.com/t5/App-Development/Reload-not-found-the-table/m-p/2498290#M102867</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm facing the issue with below script reload:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;LET vs_ETL_Rows = 2;&lt;/P&gt;
&lt;P&gt;R:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;Col1, Col2&lt;BR /&gt;A, 1&lt;BR /&gt;B, 2&lt;BR /&gt;];&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;for vVar=1 to 2&lt;/P&gt;
&lt;P&gt;sections:&lt;BR /&gt;NoConcatenate&lt;BR /&gt;LOAD * resident R&lt;BR /&gt;where [Col1] = $(vVar);&lt;/P&gt;
&lt;P&gt;Next&lt;BR /&gt;For vVar = 1 to ($(vs_ETL_Rows)-1)&lt;BR /&gt;Join(sections)&lt;BR /&gt;Load * Resident "sections-$(vVar)";&lt;BR /&gt;NExt&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Reload return the error:&lt;/P&gt;
&lt;P&gt;ScriptErrorCount 1&lt;BR /&gt;ScriptErrorDetails Table 'sections-1' not found&lt;BR /&gt;ScriptErrorList Table Not Found &lt;BR /&gt;ScriptError Table Not Found&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please help me to fix this issue.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Dec 2024 10:10:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Reload-not-found-the-table/m-p/2498290#M102867</guid>
      <dc:creator>PaulinaWanago</dc:creator>
      <dc:date>2024-12-17T10:10:00Z</dc:date>
    </item>
    <item>
      <title>Re: Reload not found the table</title>
      <link>https://community.qlik.com/t5/App-Development/Reload-not-found-the-table/m-p/2498307#M102868</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/211287"&gt;@PaulinaWanago&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;_______________________________________________________&lt;/P&gt;
&lt;P&gt;LET vs_ETL_Rows = 2;&lt;/P&gt;
&lt;P&gt;R:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;Col1, Col2&lt;BR /&gt;A, 1&lt;BR /&gt;B, 2&lt;BR /&gt;];&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;for vVar=1 to 2&lt;/P&gt;
&lt;P&gt;sections:&lt;BR /&gt;NoConcatenate&lt;BR /&gt;LOAD * resident R&lt;BR /&gt;where [Col1] = $(vVar);&lt;/P&gt;
&lt;P&gt;NEXT&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;EXIT SCRIPT // load only the first part of script&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;For vVar = 1 to ($(vs_ETL_Rows)-1)&lt;BR /&gt;Join(sections)&lt;BR /&gt;Load * Resident "sections-$(vVar)";&lt;BR /&gt;NExt&lt;/P&gt;
&lt;P&gt;_____________________________________________________________&lt;/P&gt;
&lt;P&gt;When you only load the first part, you can see the table &lt;EM&gt;sections-1&lt;/EM&gt; doesn't exist (take a look on you model).&lt;/P&gt;
&lt;P&gt;I don't know what you want to do exactly, so i can really suggest adjustments.&lt;/P&gt;
&lt;P&gt;Regards.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Dec 2024 11:45:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Reload-not-found-the-table/m-p/2498307#M102868</guid>
      <dc:creator>sbaro_bd</dc:creator>
      <dc:date>2024-12-17T11:45:37Z</dc:date>
    </item>
    <item>
      <title>Re: Reload not found the table</title>
      <link>https://community.qlik.com/t5/App-Development/Reload-not-found-the-table/m-p/2498355#M102871</link>
      <description>&lt;P&gt;It's no problem to include the loop-iterator or an appropriate referenced value into a load-logic but you need to include the iterator-information nearly everywhere - by defining the table, the source, any kind of where-clause as well as the store/drop-stamentes, like:&lt;/P&gt;
&lt;P&gt;...&lt;/P&gt;
&lt;P&gt;for vVar=1 to 2&lt;BR /&gt;&amp;nbsp; &amp;nbsp;[sections&lt;STRONG&gt;-S(vVar)&lt;/STRONG&gt;]:&lt;BR /&gt;&amp;nbsp; &amp;nbsp;NoConcatenate&amp;nbsp;LOAD * resident R&amp;nbsp;where [Col1] = $(vVar);&lt;BR /&gt;...&lt;/P&gt;
&lt;P&gt;Beside this be aware that using join-operations within loops could become tricky - if for example the added fields from the first iteration becomes key-fields in the following ones ...&lt;/P&gt;</description>
      <pubDate>Tue, 17 Dec 2024 15:00:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Reload-not-found-the-table/m-p/2498355#M102871</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2024-12-17T15:00:51Z</dc:date>
    </item>
    <item>
      <title>Re: Reload not found the table</title>
      <link>https://community.qlik.com/t5/App-Development/Reload-not-found-the-table/m-p/2498529#M102889</link>
      <description>&lt;P&gt;Hi Marcus,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It make sense but with&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;[sections&lt;/SPAN&gt;&lt;STRONG&gt;-S(vVar)&lt;/STRONG&gt;&lt;SPAN&gt;]: also script reply error - 'Table 'sections' not found.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Dec 2024 09:48:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Reload-not-found-the-table/m-p/2498529#M102889</guid>
      <dc:creator>PaulinaWanago</dc:creator>
      <dc:date>2024-12-18T09:48:58Z</dc:date>
    </item>
    <item>
      <title>Re: Reload not found the table</title>
      <link>https://community.qlik.com/t5/App-Development/Reload-not-found-the-table/m-p/2498532#M102890</link>
      <description>&lt;P&gt;Thanks Sbaro, looks like it works. Will try in big script.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Dec 2024 09:50:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Reload-not-found-the-table/m-p/2498532#M102890</guid>
      <dc:creator>PaulinaWanago</dc:creator>
      <dc:date>2024-12-18T09:50:14Z</dc:date>
    </item>
    <item>
      <title>Re: Reload not found the table</title>
      <link>https://community.qlik.com/t5/App-Development/Reload-not-found-the-table/m-p/2498536#M102891</link>
      <description>&lt;P&gt;But&amp;nbsp;&lt;STRONG&gt;EXIT SCRIPT&lt;/STRONG&gt; finish the reloads, what if script should run and execute next part of the script?&lt;/P&gt;</description>
      <pubDate>Wed, 18 Dec 2024 10:01:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Reload-not-found-the-table/m-p/2498536#M102891</guid>
      <dc:creator>PaulinaWanago</dc:creator>
      <dc:date>2024-12-18T10:01:33Z</dc:date>
    </item>
    <item>
      <title>Re: Reload not found the table</title>
      <link>https://community.qlik.com/t5/App-Development/Reload-not-found-the-table/m-p/2498542#M102893</link>
      <description>&lt;P&gt;You need to apply it everywhere - any you may have missed anyone, maybe within the join-reference.&lt;/P&gt;
&lt;P&gt;Looking within the document-log will show the exact place of which iteration where the error happens. A shortcut in the above example may be just to search per CTRL + F for the term sections.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Dec 2024 10:10:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Reload-not-found-the-table/m-p/2498542#M102893</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2024-12-18T10:10:21Z</dc:date>
    </item>
  </channel>
</rss>

