<?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 Field not found ...... in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Field-not-found/m-p/181609#M47558</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is this all the code you have? Then I would expect a 'table not found' error because the tables 'Orders' and 'Order_Details' have to be loaded already in memory if you use the resident statement here.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Jun 2010 02:04:17 GMT</pubDate>
    <dc:creator>tabletuner</dc:creator>
    <dc:date>2010-06-09T02:04:17Z</dc:date>
    <item>
      <title>Field not found ......</title>
      <link>https://community.qlik.com/t5/QlikView/Field-not-found/m-p/181608#M47557</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good Afternoon Fellows:&lt;/P&gt;&lt;P&gt;Im doing the example of a tutorial and i have this code:&lt;/P&gt;&lt;P&gt;OrdersByYear_Source:&lt;BR /&gt;Load&lt;BR /&gt;CustomerID,&lt;BR /&gt;OrderID,&lt;BR /&gt;Year&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;RESIDENT&lt;BR /&gt;Orders&lt;BR /&gt;WHERE&lt;BR /&gt;Year = 2003 OR Year =2004;&lt;/P&gt;&lt;P&gt;LEFT JOIN (OrdersByYear_Source) LOAD&lt;BR /&gt;OrderID,&lt;BR /&gt;NetSales&lt;BR /&gt;RESIDENT&lt;BR /&gt;Order_Details;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;OrdersByYear:&lt;BR /&gt;Load&lt;BR /&gt;CustomerID,&lt;BR /&gt;Year,&lt;BR /&gt;sum(NetSales) as NetSalesByYear&lt;BR /&gt;RESIDENT&lt;BR /&gt;OrdersByYear_Source&lt;BR /&gt;GROUP BY&lt;BR /&gt;CustomerID , Year;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;And there is a error, FILE NOT FOUND, does anybody knows why???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jun 2010 23:53:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-not-found/m-p/181608#M47557</guid>
      <dc:creator />
      <dc:date>2010-06-08T23:53:49Z</dc:date>
    </item>
    <item>
      <title>Field not found ......</title>
      <link>https://community.qlik.com/t5/QlikView/Field-not-found/m-p/181609#M47558</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is this all the code you have? Then I would expect a 'table not found' error because the tables 'Orders' and 'Order_Details' have to be loaded already in memory if you use the resident statement here.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jun 2010 02:04:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-not-found/m-p/181609#M47558</guid>
      <dc:creator>tabletuner</dc:creator>
      <dc:date>2010-06-09T02:04:17Z</dc:date>
    </item>
    <item>
      <title>AW:Re: Field not found ......</title>
      <link>https://community.qlik.com/t5/QlikView/Field-not-found/m-p/181610#M47559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Community would be able to help better and faster if the issues would be posted more carefully. Headline of this post is "Field not found", in the post it says "File not found", and as Tjeerd (and the posted code) suggest it's most likely that the error is "Table not found"..&lt;/P&gt;&lt;P&gt;Wonder what the error really is...&lt;/P&gt;&lt;P&gt;Rgds,&lt;BR /&gt;Joachim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jun 2010 05:29:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-not-found/m-p/181610#M47559</guid>
      <dc:creator>biester</dc:creator>
      <dc:date>2010-06-09T05:29:18Z</dc:date>
    </item>
    <item>
      <title>Field not found ......</title>
      <link>https://community.qlik.com/t5/QlikView/Field-not-found/m-p/181611#M47560</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I will try to explain myself better:&lt;/P&gt;&lt;P&gt;I have this on one tab of the script:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Orders:&lt;BR /&gt;buffer (stale after 7 days)&lt;BR /&gt;Load&lt;BR /&gt;CustomerID,&lt;BR /&gt;EmployeeID,&lt;BR /&gt;EmployeeID as EmployeeSales,&lt;BR /&gt;Freight,&lt;BR /&gt;OrderDate,&lt;BR /&gt;OrderDate as CountOrderDate,&lt;BR /&gt;Year(OrderDate) as Year,&lt;BR /&gt;Month(OrderDate) as Month,&lt;BR /&gt;date(monthstart(OrderDate),'MMM-YYYY') as [Rolling Month],&lt;BR /&gt;applymap('Quarters_Map',num(Month(OrderDate))) as Quarter,&lt;BR /&gt;Day(OrderDate) as Day,&lt;BR /&gt;OrderID,&lt;BR /&gt;ShipperID;&lt;BR /&gt;SQL SELECT * FROM PRProdBD.dbo.Orders;&lt;/P&gt;&lt;P&gt;Order_Details:&lt;BR /&gt;buffer (stale after 7 days)&lt;BR /&gt;SQL SELECT Discount,&lt;BR /&gt;OrderID,&lt;BR /&gt;ProductID,&lt;BR /&gt;ProductID as CuentaIDProducto,&lt;BR /&gt;Quantity,&lt;BR /&gt;UnitPrice,&lt;BR /&gt;UnitPrice*Quantity*(1-Discount) as NetSales&lt;BR /&gt;FROM PRProdBD.dbo."Order Details";&lt;/P&gt;&lt;P&gt;And in the other tab i have the code below:&lt;/P&gt;&lt;P&gt;OrdersByYear_Source:&lt;BR /&gt;Load&lt;BR /&gt;CustomerID,&lt;BR /&gt;OrderID,&lt;BR /&gt;Year&lt;BR /&gt;RESIDENT&lt;BR /&gt;Orders&lt;BR /&gt;WHERE&lt;BR /&gt;Year = 2003 OR Year =2004; /* only load 2 years */&lt;BR /&gt;LEFT JOIN (OrdersByYear_Source) LOAD&lt;BR /&gt;OrderID,&lt;BR /&gt;NetSales&lt;BR /&gt;RESIDENT&lt;BR /&gt;Order_Details;&lt;BR /&gt;OrdersByYear:&lt;BR /&gt;Load&lt;BR /&gt;CustomerID,&lt;BR /&gt;Year,&lt;BR /&gt;sum(NetSales) as NetSalesByYear&lt;BR /&gt;RESIDENT&lt;BR /&gt;OrdersByYear_Source&lt;BR /&gt;GROUP BY&lt;BR /&gt;CustomerID , Year;&lt;BR /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jun 2010 15:54:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-not-found/m-p/181611#M47560</guid>
      <dc:creator />
      <dc:date>2010-06-09T15:54:46Z</dc:date>
    </item>
  </channel>
</rss>

