<?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: No data in data model after loading script (no errors) in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/No-data-in-data-model-after-loading-script-no-errors/m-p/2060153#M86997</link>
    <description>&lt;P&gt;Not really because this load is a join to a previous table and therefore no Final_Table is created.&lt;/P&gt;</description>
    <pubDate>Thu, 13 Apr 2023 15:00:22 GMT</pubDate>
    <dc:creator>marcus_sommer</dc:creator>
    <dc:date>2023-04-13T15:00:22Z</dc:date>
    <item>
      <title>No data in data model after loading script (no errors)</title>
      <link>https://community.qlik.com/t5/App-Development/No-data-in-data-model-after-loading-script-no-errors/m-p/2060130#M86994</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;
&lt;P&gt;I have the following code: Oddly the script loads, but there is no data model (there appears to be no data in the model at all). What could be causing this?&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;See the following code:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Temp_Packaging:&lt;BR /&gt;LOAD&lt;BR /&gt;KPI_ID,&lt;BR /&gt;Department,&lt;BR /&gt;Subdepartment,&lt;BR /&gt;SubSubDepartment,&lt;BR /&gt;Accountable,&lt;BR /&gt;Shared,&lt;BR /&gt;"Measure Category",&lt;BR /&gt;"Measure",&lt;BR /&gt;Unit,&lt;BR /&gt;FY22,&lt;BR /&gt;FY23,&lt;BR /&gt;Act. as P01_Actual,&lt;BR /&gt;Plan as P01_Plan,&lt;BR /&gt;Act.1 as P02_Actual,&lt;BR /&gt;Plan1 as P02_Plan,&lt;BR /&gt;Act.2 as P03_Actual,&lt;BR /&gt;Plan2 as P03_Plan,&lt;BR /&gt;Act.3 as P04_Actual,&lt;BR /&gt;Plan3 as P04_Plan,&lt;BR /&gt;Act.4 as P05_Actual,&lt;BR /&gt;Plan4 as P05_Plan,&lt;BR /&gt;Act.5 as P06_Actual,&lt;BR /&gt;Plan5 as P06_Plan,&lt;BR /&gt;Act.6 as P07_Actual,&lt;BR /&gt;Plan6 as P07_Plan,&lt;BR /&gt;Act.7 as P08_Actual,&lt;BR /&gt;Plan7 as P08_Plan,&lt;BR /&gt;Act.8 as P09_Actual,&lt;BR /&gt;Plan8 as P09_Plan,&lt;BR /&gt;Act.9 as P10_Actual,&lt;BR /&gt;Plan9 as P10_Plan,&lt;BR /&gt;Act.10 as P11_Actual,&lt;BR /&gt;Plan10 as P11_Plan,&lt;BR /&gt;Act.11 as P12_Actual,&lt;BR /&gt;Plan11 as P12_Plan&lt;BR /&gt;FROM [lib://Meppel Data Connection/5_Production_Control_System/S5_Generic/S5_Generic_APP02_OGSM/Source_Manual/OGSM.xlsx]&lt;BR /&gt;(ooxml, embedded labels, header is 4 lines, table is Packaging);&lt;/P&gt;
&lt;P&gt;Packaging_Actuals:&lt;BR /&gt;Crosstable(Actuals_Period, Actuals_Value, 11)&lt;BR /&gt;LOAD&lt;BR /&gt;KPI_ID,&lt;BR /&gt;Department,&lt;BR /&gt;Subdepartment,&lt;BR /&gt;SubSubDepartment,&lt;BR /&gt;Accountable,&lt;BR /&gt;Shared,&lt;BR /&gt;"Measure Category",&lt;BR /&gt;"Measure",&lt;BR /&gt;Unit,&lt;BR /&gt;FY22,&lt;BR /&gt;FY23,&lt;BR /&gt;P01_Actual,&lt;BR /&gt;P02_Actual,&lt;BR /&gt;P03_Actual,&lt;BR /&gt;P04_Actual,&lt;BR /&gt;P05_Actual,&lt;BR /&gt;P06_Actual,&lt;BR /&gt;P07_Actual,&lt;BR /&gt;P08_Actual,&lt;BR /&gt;P09_Actual,&lt;BR /&gt;P10_Actual,&lt;BR /&gt;P11_Actual,&lt;BR /&gt;P12_Actual&lt;BR /&gt;&lt;BR /&gt;RESIDENT Temp_Packaging;&lt;/P&gt;
&lt;P&gt;Packaging_Planned:&lt;BR /&gt;Crosstable(Plan_Period, Plan_Value, 11)&lt;BR /&gt;LOAD&lt;BR /&gt;KPI_ID,&lt;BR /&gt;Department,&lt;BR /&gt;Subdepartment,&lt;BR /&gt;SubSubDepartment,&lt;BR /&gt;Accountable,&lt;BR /&gt;Shared,&lt;BR /&gt;"Measure Category",&lt;BR /&gt;"Measure",&lt;BR /&gt;Unit,&lt;BR /&gt;FY22,&lt;BR /&gt;FY23,&lt;BR /&gt;P01_Plan,&lt;BR /&gt;P02_Plan,&lt;BR /&gt;P03_Plan,&lt;BR /&gt;P04_Plan,&lt;BR /&gt;P05_Plan,&lt;BR /&gt;P06_Plan,&lt;BR /&gt;P07_Plan,&lt;BR /&gt;P08_Plan,&lt;BR /&gt;P09_Plan,&lt;BR /&gt;P10_Plan,&lt;BR /&gt;P11_Plan,&lt;BR /&gt;P12_Plan&lt;/P&gt;
&lt;P&gt;RESIDENT Temp_Packaging;&lt;/P&gt;
&lt;P&gt;Final_Table:&lt;BR /&gt;LEFT JOIN (Packaging_Actuals)&lt;BR /&gt;LOAD&lt;BR /&gt;KPI_ID,&lt;BR /&gt;Department,&lt;BR /&gt;Subdepartment,&lt;BR /&gt;SubSubDepartment,&lt;BR /&gt;Accountable,&lt;BR /&gt;Shared,&lt;BR /&gt;"Measure Category",&lt;BR /&gt;"Measure",&lt;BR /&gt;Unit,&lt;BR /&gt;FY22,&lt;BR /&gt;FY23,&lt;BR /&gt;Plan_Period,&lt;BR /&gt;Plan_Value&lt;BR /&gt;&lt;BR /&gt;RESIDENT Packaging_Planned;&lt;/P&gt;
&lt;P&gt;TRACE 'Rows in Temp_Packaging: ' &amp;amp; NoOfRows('Temp_Packaging');&lt;BR /&gt;TRACE 'Rows in Packaging_Actuals: ' &amp;amp; NoOfRows('Packaging_Actuals');&lt;BR /&gt;TRACE 'Rows in Packaging_Planned: ' &amp;amp; NoOfRows('Packaging_Planned');&lt;BR /&gt;TRACE 'Rows in Final_Table: ' &amp;amp; NoOfRows('Final_Table');&lt;/P&gt;
&lt;P&gt;DROP TABLE Temp_Packaging;&lt;BR /&gt;DROP TABLE Packaging_Actuals;&lt;BR /&gt;DROP TABLE Packaging_Planned;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Apr 2023 14:24:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/No-data-in-data-model-after-loading-script-no-errors/m-p/2060130#M86994</guid>
      <dc:creator>ToinkToinkTigger</dc:creator>
      <dc:date>2023-04-13T14:24:53Z</dc:date>
    </item>
    <item>
      <title>Re: No data in data model after loading script (no errors)</title>
      <link>https://community.qlik.com/t5/App-Development/No-data-in-data-model-after-loading-script-no-errors/m-p/2060141#M86995</link>
      <description>&lt;P&gt;You are deleting all loaded tables.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Apr 2023 14:41:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/No-data-in-data-model-after-loading-script-no-errors/m-p/2060141#M86995</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2023-04-13T14:41:47Z</dc:date>
    </item>
    <item>
      <title>Re: No data in data model after loading script (no errors)</title>
      <link>https://community.qlik.com/t5/App-Development/No-data-in-data-model-after-loading-script-no-errors/m-p/2060149#M86996</link>
      <description>&lt;P&gt;Ehm, I thought I should end up with one table called ''Final_Table''&lt;/P&gt;</description>
      <pubDate>Thu, 13 Apr 2023 14:50:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/No-data-in-data-model-after-loading-script-no-errors/m-p/2060149#M86996</guid>
      <dc:creator>ToinkToinkTigger</dc:creator>
      <dc:date>2023-04-13T14:50:09Z</dc:date>
    </item>
    <item>
      <title>Re: No data in data model after loading script (no errors)</title>
      <link>https://community.qlik.com/t5/App-Development/No-data-in-data-model-after-loading-script-no-errors/m-p/2060153#M86997</link>
      <description>&lt;P&gt;Not really because this load is a join to a previous table and therefore no Final_Table is created.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Apr 2023 15:00:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/No-data-in-data-model-after-loading-script-no-errors/m-p/2060153#M86997</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2023-04-13T15:00:22Z</dc:date>
    </item>
    <item>
      <title>Re: No data in data model after loading script (no errors)</title>
      <link>https://community.qlik.com/t5/App-Development/No-data-in-data-model-after-loading-script-no-errors/m-p/2061889#M87099</link>
      <description>&lt;P&gt;Ah, I see; the JOIN requires an existing table for it to work. Thanks.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Apr 2023 08:10:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/No-data-in-data-model-after-loading-script-no-errors/m-p/2061889#M87099</guid>
      <dc:creator>ToinkToinkTigger</dc:creator>
      <dc:date>2023-04-19T08:10:46Z</dc:date>
    </item>
  </channel>
</rss>

