<?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: Data not loading in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Data-not-loading/m-p/696604#M251653</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I guess the table is getting concatenated to some other table with similar type and number of fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try below:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;Forecast:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;LOAD&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;Oracle_Proj_Num,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;STRONG&gt;0 as dummy,&lt;/STRONG&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;Month(Date#(Forecast_Month, 'MMM YYYY')) AS Forecast_Month,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;Forecast_Amount&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;Resident Forecast_Temp;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 25 Sep 2014 16:22:16 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-09-25T16:22:16Z</dc:date>
    <item>
      <title>Data not loading</title>
      <link>https://community.qlik.com/t5/QlikView/Data-not-loading/m-p/696603#M251652</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a parent table call Budget; Reading budget table and creating two separate tables, Actuals and Forecast. Actual table got create with data and Forecast_temp table got create and loading data but it is not creating Forecast table. Did not receive errors and load script running fine. Is there any limitation in creating table from temp tables? i don't think so. right.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Budget:&lt;/P&gt;&lt;P&gt;Oracle_Proj_Num,&lt;/P&gt;&lt;P&gt;Project_Number,&lt;/P&gt;&lt;P&gt;Project_manager,&lt;/P&gt;&lt;P&gt;Jan Actual,&lt;/P&gt;&lt;P&gt;Feb Actual,&lt;/P&gt;&lt;P&gt;Mar Actual, Apr Actual, May Actual, Jun Actual, July Actual, Aug Actual,&lt;/P&gt;&lt;P&gt;Sep Forecast, Oct Forecast, Nov Forecast, Dec Forecast&lt;/P&gt;&lt;P&gt;From&lt;/P&gt;&lt;P&gt;select * from budget;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actual_Temp:&lt;/P&gt;&lt;P&gt;CrossTable(Actual_Month, Actual_Amount)&lt;/P&gt;&lt;P&gt;LOAD Oracle_Proj_Num, "Jan 2014", "Feb 2014","Mar 2014","Apr 2014","May 2014","Jun 2014","Jul 2014","Aug 2014"&lt;/P&gt;&lt;P&gt;Resident Budget;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actuals:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;Oracle_Proj_Num ,&lt;/P&gt;&lt;P&gt;Month(Date#(Actual_Month, 'MMM YYYY')) AS Act_Month,&lt;/P&gt;&lt;P&gt;Actual_Amount&lt;/P&gt;&lt;P&gt;resident Actual_Temp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;drop Table Actual_Temp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Forecast_Temp:&lt;/P&gt;&lt;P&gt;CrossTable(Forecast_Month, Forecast_Amount)&lt;/P&gt;&lt;P&gt;LOAD Oracle_Proj_Num,"Sep 2014","Oct 2014", "Nov 2014", "Dec 2014"&lt;/P&gt;&lt;P&gt;Resident Budget;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;EM&gt;&lt;STRONG&gt;Forecast:&lt;/STRONG&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;STRONG&gt;&lt;EM&gt;LOAD&lt;/EM&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;STRONG&gt;&lt;EM&gt;Oracle_Proj_Num,&lt;/EM&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;STRONG&gt;&lt;EM&gt;Month(Date#(Forecast_Month, 'MMM YYYY')) AS Forecast_Month,&lt;/EM&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;STRONG&gt;&lt;EM&gt;Forecast_Amount&lt;/EM&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;EM&gt;&lt;STRONG&gt;Resident Forecast_Temp;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//DROP Table Forecast_Temp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Sep 2014 16:06:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-not-loading/m-p/696603#M251652</guid>
      <dc:creator />
      <dc:date>2014-09-25T16:06:47Z</dc:date>
    </item>
    <item>
      <title>Re: Data not loading</title>
      <link>https://community.qlik.com/t5/QlikView/Data-not-loading/m-p/696604#M251653</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I guess the table is getting concatenated to some other table with similar type and number of fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try below:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;Forecast:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;LOAD&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;Oracle_Proj_Num,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;STRONG&gt;0 as dummy,&lt;/STRONG&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;Month(Date#(Forecast_Month, 'MMM YYYY')) AS Forecast_Month,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;Forecast_Amount&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;Resident Forecast_Temp;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Sep 2014 16:22:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-not-loading/m-p/696604#M251653</guid>
      <dc:creator />
      <dc:date>2014-09-25T16:22:16Z</dc:date>
    </item>
    <item>
      <title>Re: Data not loading</title>
      <link>https://community.qlik.com/t5/QlikView/Data-not-loading/m-p/696605#M251654</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use "NoConcatenate" to prevent automatic concatenation, even if the differen tables have the same set of fields. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Sep 2014 17:52:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-not-loading/m-p/696605#M251654</guid>
      <dc:creator>geert_gelade</dc:creator>
      <dc:date>2014-09-25T17:52:55Z</dc:date>
    </item>
  </channel>
</rss>

