<?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: Field Not Found in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Field-Not-Found/m-p/933976#M322631</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perfect! Thank you for the help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 Dec 2015 14:49:54 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-12-03T14:49:54Z</dc:date>
    <item>
      <title>Field Not Found</title>
      <link>https://community.qlik.com/t5/QlikView/Field-Not-Found/m-p/933972#M322627</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Everyone!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am starting the groundwork for a new app but have run into an issue with loading one of the base tables. Every time I try to Reload or Debug the script below I get a "Field not found - &amp;lt;Product&amp;gt;" error. I'm not sure what I am doing wrong. Is there anything obvious that I am missing?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;SalesByProd:&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;LOAD&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"Product"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"Pack"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"Wh"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"Acct_Num"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"Qty_Ord"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;;&lt;BR /&gt; &lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;SQL&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; SELECT &lt;BR /&gt; "product",&lt;BR /&gt; "pack",&lt;BR /&gt; "Wh",&lt;BR /&gt; "Acct_Num",&lt;BR /&gt; "Qty_Ord"&lt;BR /&gt; FROM "PROD_WHOLESALE_VIEWS"."WSale_PDS_ORDERS_COMB"&lt;BR /&gt; WHERE pcat &amp;gt; 6;&lt;BR /&gt;&lt;SPAN style="color: #000000; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 10pt;"&gt;Thank you for your help!&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Dec 2015 23:01:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-Not-Found/m-p/933972#M322627</guid>
      <dc:creator />
      <dc:date>2015-12-01T23:01:40Z</dc:date>
    </item>
    <item>
      <title>Re: Field Not Found</title>
      <link>https://community.qlik.com/t5/QlikView/Field-Not-Found/m-p/933973#M322628</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;QlikView is case-sensitive by field/table-names and in your SQL you have "product" and within the precceding-part "Product". Further you used double-quotes around your fields/table within the SQL which &lt;SPAN style="text-decoration: underline;"&gt;might&lt;/SPAN&gt; not be correct. Try:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;SalesByProd:&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style="color: #0000ff; font-size: 8pt;"&gt;LOAD&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; *&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;;&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style="color: #0000ff; font-size: 8pt;"&gt;SQL&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; SELECT &lt;BR /&gt; product,&lt;BR /&gt; pack,&lt;BR /&gt; Wh,&lt;BR /&gt; Acct_Num,&lt;BR /&gt; Qty_Ord&lt;BR /&gt; FROM PROD_WHOLESALE_VIEWS.WSale_PDS_ORDERS_COMB&lt;BR /&gt; WHERE pcat &amp;gt; 6;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2015 01:17:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-Not-Found/m-p/933973#M322628</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-12-02T01:17:49Z</dc:date>
    </item>
    <item>
      <title>Re: Field Not Found</title>
      <link>https://community.qlik.com/t5/QlikView/Field-Not-Found/m-p/933974#M322629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you, Marcus! That worked. For future reference, is it a best practice to use "*" on the Load and then specify what fields you want in the SQL statement?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2015 21:52:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-Not-Found/m-p/933974#M322629</guid>
      <dc:creator />
      <dc:date>2015-12-02T21:52:07Z</dc:date>
    </item>
    <item>
      <title>Re: Field Not Found</title>
      <link>https://community.qlik.com/t5/QlikView/Field-Not-Found/m-p/933975#M322630</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes you could do it in this way unless you want/need to make any transformings - for this see here: &lt;A href="https://community.qlik.com/message/910841"&gt;Re: Qlik View Load SQL Select Question&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Dec 2015 07:42:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-Not-Found/m-p/933975#M322630</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-12-03T07:42:25Z</dc:date>
    </item>
    <item>
      <title>Re: Field Not Found</title>
      <link>https://community.qlik.com/t5/QlikView/Field-Not-Found/m-p/933976#M322631</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perfect! Thank you for the help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Dec 2015 14:49:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-Not-Found/m-p/933976#M322631</guid>
      <dc:creator />
      <dc:date>2015-12-03T14:49:54Z</dc:date>
    </item>
  </channel>
</rss>

