<?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 error  Field 'a' not found in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Field-not-found-error-Field-a-not-found/m-p/1643673#M732215</link>
    <description>&lt;P&gt;Thank you for taking&amp;nbsp; look, the first option i tried work but i really appreciate your time.&lt;/P&gt;&lt;P&gt;Thank you, have a nice day&lt;/P&gt;&lt;P&gt;Daniel&lt;/P&gt;</description>
    <pubDate>Wed, 06 Nov 2019 10:56:02 GMT</pubDate>
    <dc:creator>davyqliks</dc:creator>
    <dc:date>2019-11-06T10:56:02Z</dc:date>
    <item>
      <title>Field not found error  Field 'a' not found</title>
      <link>https://community.qlik.com/t5/QlikView/Field-not-found-error-Field-a-not-found/m-p/1643310#M732211</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am trying an incremental load for insert, update, delete.&amp;nbsp;I have followed an online guide and am having the error&amp;nbsp;&lt;/P&gt;&lt;P&gt;Field not found error -&amp;nbsp;Field 'a' not found&lt;/P&gt;&lt;P&gt;I have narrowed this down to the script section&lt;/P&gt;&lt;P&gt;Where [Voucher Date] &amp;gt;=$(vUpdateDate);&lt;/P&gt;&lt;P&gt;(When this is commented no error)&lt;/P&gt;&lt;P&gt;in the QVD load i use the following&lt;/P&gt;&lt;P&gt;LET vUpdateDate = Peek ([Voucher Date],-1,'Sort_Sales');&lt;/P&gt;&lt;P&gt;The error mentioned (Field not found error -&amp;nbsp;Field 'a' not found) happens at the bottom of the Incremental load:&lt;/P&gt;&lt;P&gt;Script below:&lt;/P&gt;&lt;P&gt;LOAD [rowno()],&lt;BR /&gt;Location,&lt;BR /&gt;date([Voucher Date]) as [Voucher Date],&lt;BR /&gt;BudgetSalesKey,&lt;BR /&gt;[Invoice no.],&lt;BR /&gt;[Issue Date],&lt;BR /&gt;[Brand Name],&lt;BR /&gt;[Retailer Name],&lt;BR /&gt;[Invoicing Customer No.],&lt;BR /&gt;[Invoicing Customer name],&lt;BR /&gt;[Invoicing Customer Local name],&lt;BR /&gt;[Customer Invoicing Country],&lt;BR /&gt;[Account Manager],&lt;BR /&gt;[Item type],&lt;BR /&gt;[Item No.],&lt;BR /&gt;[Item Name],&lt;BR /&gt;[Invoice Item Line Quantity],&lt;BR /&gt;[Invoice Currency],&lt;BR /&gt;[Invoice Item Unit Price],&lt;BR /&gt;[Invoice Item Amount],&lt;BR /&gt;[VAT Amount],&lt;BR /&gt;[Invoice Item Total in Invoice Currency],&lt;BR /&gt;[Base Currency],&lt;BR /&gt;[Invoice Item Amount in Base Currency],&lt;BR /&gt;[VAT Amount in Base Currency],&lt;BR /&gt;[Invoice Item Total in Base Currency],&lt;BR /&gt;GBP_Price,&lt;BR /&gt;HKD_Price,&lt;BR /&gt;DKK_Price,&lt;BR /&gt;[Retro in Base Currency],&lt;BR /&gt;[Net Sales in base currency],&lt;BR /&gt;[Shipment No.],&lt;BR /&gt;[Shipment Date],&lt;BR /&gt;[Invoice Payment Terms],&lt;BR /&gt;Status,&lt;BR /&gt;[Account Code],&lt;BR /&gt;[Account Name],&lt;BR /&gt;Company&lt;BR /&gt;FROM&lt;BR /&gt;[***********************************\Sales Data.qvd]&lt;BR /&gt;(qvd)&lt;/P&gt;&lt;P&gt;Where [Voucher Date] &amp;gt;=$(vUpdateDate);&lt;/P&gt;&lt;P&gt;Has anyone come across this error when using incremental load to achieve insert update delete?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance&lt;/P&gt;&lt;P&gt;Daniel&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 02:01:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-not-found-error-Field-a-not-found/m-p/1643310#M732211</guid>
      <dc:creator>davyqliks</dc:creator>
      <dc:date>2024-11-16T02:01:54Z</dc:date>
    </item>
    <item>
      <title>Re: Field not found error  Field 'a' not found</title>
      <link>https://community.qlik.com/t5/QlikView/Field-not-found-error-Field-a-not-found/m-p/1643460#M732212</link>
      <description>&lt;P&gt;Try inserting '' for the variable called.&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Where [Voucher Date] &amp;gt;='$(vUpdateDate)';&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Nov 2019 00:49:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-not-found-error-Field-a-not-found/m-p/1643460#M732212</guid>
      <dc:creator>Arthur_Fong</dc:creator>
      <dc:date>2019-11-06T00:49:26Z</dc:date>
    </item>
    <item>
      <title>Re: Field not found error  Field 'a' not found</title>
      <link>https://community.qlik.com/t5/QlikView/Field-not-found-error-Field-a-not-found/m-p/1643581#M732213</link>
      <description>&lt;P&gt;hello,&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;LET vUpdateDate = Peek ([Voucher Date],-1,'Sort_Sales');&amp;nbsp; -&amp;gt;&amp;nbsp;LET vUpdateDate = Peek ('[Voucher Date]',-1,'Sort_Sales');&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;and you can also try to use your where clause like this Where [Voucher Date] &amp;gt;= vUpdateDate;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Nov 2019 08:49:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-not-found-error-Field-a-not-found/m-p/1643581#M732213</guid>
      <dc:creator>andrei_delta</dc:creator>
      <dc:date>2019-11-06T08:49:39Z</dc:date>
    </item>
    <item>
      <title>Re: Field not found error  Field 'a' not found</title>
      <link>https://community.qlik.com/t5/QlikView/Field-not-found-error-Field-a-not-found/m-p/1643671#M732214</link>
      <description>&lt;P&gt;Thank you so much, this cleared the error.&lt;/P&gt;&lt;P&gt;Now for the testing.&lt;/P&gt;&lt;P&gt;Many thanks&lt;/P&gt;&lt;P&gt;Daniel&lt;/P&gt;</description>
      <pubDate>Wed, 06 Nov 2019 10:55:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-not-found-error-Field-a-not-found/m-p/1643671#M732214</guid>
      <dc:creator>davyqliks</dc:creator>
      <dc:date>2019-11-06T10:55:02Z</dc:date>
    </item>
    <item>
      <title>Re: Field not found error  Field 'a' not found</title>
      <link>https://community.qlik.com/t5/QlikView/Field-not-found-error-Field-a-not-found/m-p/1643673#M732215</link>
      <description>&lt;P&gt;Thank you for taking&amp;nbsp; look, the first option i tried work but i really appreciate your time.&lt;/P&gt;&lt;P&gt;Thank you, have a nice day&lt;/P&gt;&lt;P&gt;Daniel&lt;/P&gt;</description>
      <pubDate>Wed, 06 Nov 2019 10:56:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-not-found-error-Field-a-not-found/m-p/1643673#M732215</guid>
      <dc:creator>davyqliks</dc:creator>
      <dc:date>2019-11-06T10:56:02Z</dc:date>
    </item>
  </channel>
</rss>

