Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW

Qlik SAP SQL Connector | Unknown column name "XXXX" until runtime, you cannot specify a field list

No ratings
cancel
Showing results for 
Search instead for 
Did you mean: 
Andre_Sostizzo
Digital Support
Digital Support

Qlik SAP SQL Connector | Unknown column name "XXXX" until runtime, you cannot specify a field list

Last Update:

Jun 7, 2021 8:03:00 AM

Updated By:

Sonja_Bauernfeind

Created date:

Nov 15, 2017 3:34:09 AM

Extraction using SAP SQL Connector doesn't work with the following script.

 

[EBAN]:
LOAD * ;
SELECT * FROM EBAN WHERE EKGRP NOT IN ('120','130','375','430') AND EKORG IN (1100,1200,2500,2800,3100,3200,3300,4100,4500,4900,5100,5500,6100,6300,7900,8100,8500,8600,9100,9400) AND ERDAT >= '20171019' ;

 

It fails with error like "Unknown column name "ERDA" until runtime, you cannot specify a field list.5678".

 

Environment:

Qlik SAP Connectors 

 

Resolution:

Break down the SELECT statement so that the content in IN clause is reduced to less than 60 characters, like below:

 

[EBAN]: 
LOAD * ; 

SELECT * FROM EBAN WHERE EKGRP NOT IN ('120','130','375','430') AND EKORG IN 
(1100,1200,2500,2800,3100,3200,3300,4100,4500,
4900,5100,5500,6100,6300,7900,8100,8500,8600,9100,9400)
AND ERDAT >= '20171019'; 

 

 

Labels (1)
Contributors
Version history
Last update:
‎2021-06-07 08:03 AM
Updated by: