Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

search condition in SAP

how to apply the search condition while fetching the data from SAP .

Whenever i tried with  where condition ,its result give all the fields without data.Please help me to resolve this issue

1 Solution

Accepted Solutions
er_mohit
Master II
Master II

so for SAP date format is YYYYMMDD

so for Calculate the max date from SAP table as alike Qlikview Date format in which you want to convert

do this using

Date(Date#(DateField,'YYYYMMDD'),'DD-MM-YYYY')

View solution in original post

6 Replies
er_mohit
Master II
Master II

Use like function with where condition.

See below

SQL Select * from tablename

WHERE Fieldname LIKE '%FRGKE%';   //here 's FRGKE is the value.

hope it helps

its_anandrjs

Use SAP Script generator template for this and there you customized your SAP scripts.

Not applicable
Author

I want to implement incremental load, so want to apply where condition for date field like

date>max(today())

Not applicable
Author

SAP Script generator template  won't work

er_mohit
Master II
Master II

so for SAP date format is YYYYMMDD

so for Calculate the max date from SAP table as alike Qlikview Date format in which you want to convert

do this using

Date(Date#(DateField,'YYYYMMDD'),'DD-MM-YYYY')

Not applicable
Author

It works

THANKU SO MUCH