<?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: Error Field not found where reloading from server in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Error-Field-not-found-where-reloading-from-server/m-p/1741969#M590589</link>
    <description>The error means that the expression which translated into a field name couldn't have any value. If you have multiline If() statements in the script, make sure all parentheses are properly closed, or try to copy and paste those lines, comment the old ones, put everything on one single long line and try again.&lt;BR /&gt;&lt;BR /&gt;Double check you are not using double quotes (") on the right side of the AS, only on the left side, e.g.: "Value" AS "FieldName", but instead single quotes ('); e.g.: '20200908' AS "Date".</description>
    <pubDate>Tue, 08 Sep 2020 13:38:07 GMT</pubDate>
    <dc:creator>Miguel_Angel_Baeyens</dc:creator>
    <dc:date>2020-09-08T13:38:07Z</dc:date>
    <item>
      <title>Error Field not found where reloading from server</title>
      <link>https://community.qlik.com/t5/QlikView/Error-Field-not-found-where-reloading-from-server/m-p/1740601#M590588</link>
      <description>&lt;P&gt;Hello to everybody,&lt;/P&gt;&lt;P&gt;I'm having a very strange problem, when I try to launch reload for a document from the server it fails with this error&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;02/09/2020 13:24:10: Error: Field not found - &amp;lt;,&amp;gt;&lt;BR /&gt;02/09/2020 13:24:10: General Script Error&lt;/P&gt;&lt;P&gt;Reloading the same document from my pc gives no problem a all.&lt;/P&gt;&lt;P&gt;The odbc is the same on server and on pc.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;This is the complete log for the script:&lt;/P&gt;&lt;P&gt;02/09/2020 13:24:09: 0316 LOAD *,&lt;BR /&gt;02/09/2020 13:24:09: 0317 if(Match(ver_data_contabilita, '0'), 'N', if(ver_data_contabilita &amp;lt; ver_data_modifica, 'S', 'N')) as "Modificato Dopo Contabilizzazione",&lt;BR /&gt;02/09/2020 13:24:09: 0318&lt;BR /&gt;02/09/2020 13:24:09: 0319 if(Match(pag_codice, '8'), ver_transazione, '' ) as PP_CodTrans,&lt;BR /&gt;02/09/2020 13:24:09: 0320 if(Match(pag_codice, 'K'), 'GestPay',if(Match(pag_codice, '9'), 'Gestpay', if(Match(pag_codice, '5'), 'Gestpay', if(Match(pag_codice, '16'),'Gestpay','')) ) ) as PaymentGateway,&lt;BR /&gt;02/09/2020 13:24:09: 0321 if(Match(pag_codice, '9'),'9091600',if(Match(pag_codice, '5'),'9099827',if(Match(pag_codice, 'K'),if(Match(ver_automatico, '1'),'9099827',if(Match(Left(ver_transazione,4), 'D-20'),'9091600','9099827')),if(Match(pag_codice, '16'),'9099827','')))) as POS,&lt;BR /&gt;02/09/2020 13:24:09: 0322 if(Match(ver_automatico, '1'),ver_identificativo_web,if(Match(pag_codice, '5'),ver_identificativo_web,if(Match(pag_codice, '16'),ver_identificativo_web,ver_transazione)))as CodTrans,&lt;BR /&gt;02/09/2020 13:24:09: 0323&lt;BR /&gt;02/09/2020 13:24:09: 0324&lt;BR /&gt;02/09/2020 13:24:09: 0325&lt;BR /&gt;02/09/2020 13:24:09: 0326&lt;/P&gt;&lt;P&gt;02/09/2020 13:24:09: 0328 LOAD&lt;BR /&gt;02/09/2020 13:24:09: 0329 "id_versamento",&lt;BR /&gt;02/09/2020 13:24:09: 0330 "id_cliente",&lt;BR /&gt;02/09/2020 13:24:09: 0331 "id_campagna" AS "id_campagna_donazione",&lt;BR /&gt;02/09/2020 13:24:09: 0332 "id_tipo" AS "ID_TIPO_VERSAMENTO",&lt;BR /&gt;02/09/2020 13:24:09: 0333 "id_sottotipo",&lt;BR /&gt;02/09/2020 13:24:09: 0334 "id_centro",&lt;BR /&gt;02/09/2020 13:24:09: 0335 "id_ringraziamento",&lt;BR /&gt;02/09/2020 13:24:09: 0336 "id_tipo_bollettino",&lt;BR /&gt;02/09/2020 13:24:09: 0337 "ver_pagamento" AS pag_codice,&lt;BR /&gt;02/09/2020 13:24:09: 0338 Year(date(date#(ver_data,'YYYYMMDD'),'DD/MM/YYYY')) AS "Anno Versamento",&lt;BR /&gt;02/09/2020 13:24:09: 0339 MonthName(date(date#(ver_data,'YYYYMMDD'),'DD/MM/YYYY')) AS "Periodo Versamento",&lt;BR /&gt;02/09/2020 13:24:09: 0340 date(date#(ver_data,'YYYYMMDD'),'DD/MM/YYYY') AS "Data Versamento",&lt;BR /&gt;02/09/2020 13:24:09: 0341 "ver_data",&lt;BR /&gt;02/09/2020 13:24:09: 0342 "ver_anno",&lt;BR /&gt;02/09/2020 13:24:09: 0343 "ver_valore",&lt;BR /&gt;02/09/2020 13:24:09: 0344 "ver_cc",&lt;BR /&gt;02/09/2020 13:24:09: 0345 "ver_cc_mese",&lt;BR /&gt;02/09/2020 13:24:09: 0346 "ver_cc_anno",&lt;BR /&gt;02/09/2020 13:24:09: 0347 "ver_documento",&lt;BR /&gt;02/09/2020 13:24:09: 0348 "ver_utente",&lt;BR /&gt;02/09/2020 13:24:09: 0349 "ver_utente_creazione",&lt;BR /&gt;02/09/2020 13:24:09: 0350 date(date#(ver_data_creazione,'YYYYMMDD'),'DD/MM/YYYY') AS "Data Creazione",&lt;BR /&gt;02/09/2020 13:24:09: 0351 "ver_data_creazione",&lt;BR /&gt;02/09/2020 13:24:09: 0352 "ver_data_modifica",&lt;BR /&gt;02/09/2020 13:24:09: 0353 "ver_automatico",&lt;BR /&gt;02/09/2020 13:24:09: 0354 "ver_note",&lt;BR /&gt;02/09/2020 13:24:09: 0355 "ver_vecchio_documento",&lt;BR /&gt;02/09/2020 13:24:09: 0356 "id_canale",&lt;BR /&gt;02/09/2020 13:24:09: 0357 "id_progetto",&lt;BR /&gt;02/09/2020 13:24:09: 0358 "id_adozione",&lt;BR /&gt;02/09/2020 13:24:09: 0359 Year(date(date#(ver_data_valuta,'YYYYMMDD'),'DD/MM/YYYY')) AS "Anno Valuta",&lt;BR /&gt;02/09/2020 13:24:09: 0360 MonthName(date(date#(ver_data_valuta,'YYYYMMDD'),'DD/MM/YYYY')) AS "Periodo Valuta",&lt;BR /&gt;02/09/2020 13:24:09: 0361 date(date#(ver_data_valuta,'YYYYMMDD'),'DD/MM/YYYY') AS "Data Valuta",&lt;BR /&gt;02/09/2020 13:24:09: 0362 "ver_data_valuta",&lt;BR /&gt;02/09/2020 13:24:09: 0363 "ver_lotto",&lt;BR /&gt;02/09/2020 13:24:09: 0364 "ver_linea_budget1",&lt;BR /&gt;02/09/2020 13:24:09: 0365 "ver_linea_budget2",&lt;BR /&gt;02/09/2020 13:24:09: 0366 "ver_linea_budget3",&lt;BR /&gt;02/09/2020 13:24:09: 0367 "id_evento",&lt;BR /&gt;02/09/2020 13:24:09: 0368 "id_conto_corrente",&lt;BR /&gt;02/09/2020 13:24:09: 0369&lt;BR /&gt;02/09/2020 13:24:09: 0370 "ver_transazione",&lt;BR /&gt;02/09/2020 13:24:09: 0371 "ver_quinto_campo",&lt;BR /&gt;02/09/2020 13:24:09: 0372 date(date#(ver_data_ringraziamento,'YYYYMMDD'),'DD/MM/YYYY') AS "Data Ringraziamento",&lt;BR /&gt;02/09/2020 13:24:09: 0373 "ver_data_ringraziamento",&lt;BR /&gt;02/09/2020 13:24:09: 0374 "ver_identificativo_web",&lt;BR /&gt;02/09/2020 13:24:09: 0375 "ver_cuas",&lt;BR /&gt;02/09/2020 13:24:09: 0376 "id_dialogatore",&lt;BR /&gt;02/09/2020 13:24:09: 0377 "ver_importo_split",&lt;BR /&gt;02/09/2020 13:24:09: 0378 date(date#(ver_data_gestionale,'YYYYMMDD'),'DD/MM/YYYY') AS "Data Gestionale",&lt;BR /&gt;02/09/2020 13:24:09: 0379 "ver_data_gestionale",&lt;BR /&gt;02/09/2020 13:24:09: 0380 "ver_flg_qlikview",&lt;BR /&gt;02/09/2020 13:24:09: 0381 "ver_pagatore",&lt;BR /&gt;02/09/2020 13:24:09: 0382 "id_referente",&lt;BR /&gt;02/09/2020 13:24:09: 0383 "ver_levy",&lt;BR /&gt;02/09/2020 13:24:09: 0384 "id_cliente_partner",&lt;BR /&gt;02/09/2020 13:24:09: 0385 "id_cliente_referente",&lt;BR /&gt;02/09/2020 13:24:09: 0386 "ver_no_attestato",&lt;BR /&gt;02/09/2020 13:24:09: 0387 if(Match(ver_data_contabilita, '0'), 'N', 'S') as "Donazione contabilizzata",&lt;BR /&gt;02/09/2020 13:24:09: 0388 date(date#(ver_data_contabilita,'YYYYMMDD'),'DD/MM/YYYY') AS "Data Contabilizzazione",&lt;BR /&gt;02/09/2020 13:24:09: 0389 "ver_data_contabilita"&lt;BR /&gt;02/09/2020 13:24:09: 0390 SQL SELECT *&lt;BR /&gt;02/09/2020 13:24:09: 0391 FROM dbo.versamenti&lt;BR /&gt;02/09/2020 13:24:09: 0392 where ver_data &amp;gt;='20190101'&lt;/P&gt;&lt;P&gt;02/09/2020 13:24:10: Error: Field not found - &amp;lt;,&amp;gt;&lt;BR /&gt;02/09/2020 13:24:10: General Script Error&lt;BR /&gt;02/09/2020 13:24:10: Execution Failed&lt;BR /&gt;02/09/2020 13:24:10: Execution finished.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Sep 2020 11:43:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-Field-not-found-where-reloading-from-server/m-p/1740601#M590588</guid>
      <dc:creator>atomino</dc:creator>
      <dc:date>2020-09-02T11:43:36Z</dc:date>
    </item>
    <item>
      <title>Re: Error Field not found where reloading from server</title>
      <link>https://community.qlik.com/t5/QlikView/Error-Field-not-found-where-reloading-from-server/m-p/1741969#M590589</link>
      <description>The error means that the expression which translated into a field name couldn't have any value. If you have multiline If() statements in the script, make sure all parentheses are properly closed, or try to copy and paste those lines, comment the old ones, put everything on one single long line and try again.&lt;BR /&gt;&lt;BR /&gt;Double check you are not using double quotes (") on the right side of the AS, only on the left side, e.g.: "Value" AS "FieldName", but instead single quotes ('); e.g.: '20200908' AS "Date".</description>
      <pubDate>Tue, 08 Sep 2020 13:38:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-Field-not-found-where-reloading-from-server/m-p/1741969#M590589</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2020-09-08T13:38:07Z</dc:date>
    </item>
  </channel>
</rss>

