Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
rajtechnocraft
Creator
Creator

SAP date format

Hi all,

I am trying to create a qvd fetching data from sap system through connector. I am unable to filter the data on date while creating qvd.

CUSTOMCONNECT TO "Provider=QvSAP Connector;ASHOS T=192.168.11.24 3;SYSNR=00;CLIE NT=252;XUserId= eDNeeYRNJbaMXUV MXLDA;XPassword =GHXfMXVMXDZCGa FMRRJB;";

Table:

LOAD

FKDAT;

SQL SELECT FKDAT

FROM VBRK where FKDAT > '2007/01/02' ;

Its geting filtered on basis of year but not month and date.. i have tried using other formats of date also like 2007.12.23

or 2007-12-23 .

Regards

Raj






1 Solution

Accepted Solutions
Anonymous
Not applicable

Hi,

please try it with:

let varDATE = date(now(),'YYYYMMDD');

...

SQL Select ERDAT VKORG from VBAK



WHERE ERDAT => '$(varDATE)' ;

View solution in original post

2 Replies
Anonymous
Not applicable

Hi,

please try it with:

let varDATE = date(now(),'YYYYMMDD');

...

SQL Select ERDAT VKORG from VBAK



WHERE ERDAT => '$(varDATE)' ;

rajtechnocraft
Creator
Creator
Author

Thanks Gencsoy,

Apreciate your help. My problem is solved with your answer.

Regards