Solved

quick report datepicker for parameter

  • 20 May 2020
  • 7 replies
  • 1220 views

Userlevel 3
Badge +7

Hi,

How can I use datepicker for quick report parameter in IFS Enterprise Explorer 10?

 

icon

Best answer by Sajith D 21 May 2020, 03:22

View original

7 replies

Userlevel 7
Badge +21

Hi,

To have the date picker for a quick report the report type would need to be something like Crystal or Query Builder. Is it safe to assume that you are referring to a quick report of type SQL Statement?

Cheers

Userlevel 3
Badge +7

Hi @Sajith D ,

 

Yes SQL statement.

Userlevel 7
Badge +21

Hi @savasciftci ,

Just realized that you can actually do this using a syntax similar to below.

SELECT customer_id,Name 
from ifsapp.customer_info 
where creation_date > &CUSTOMER_INFO.CREATION_DATE

 

Cheers

Userlevel 3
Badge +7

Thanks @Sajith D 

Badge +1

SELECT customer_id,Name 
from ifsapp.customer_info 
where creation_date >   '&[--S-L]CUSTOMER_INFO.CREATION_DATE'

Userlevel 3
Badge +7

Let’s say we need to check the date range. Can we achieve it? because in the given solution we cannot give the name we want in the parameter list. Any work around please?

Ex:

SELECT customer_id,Name 
from ifsapp.customer_info 
where creation_date between &From_date AND &To_date

Badge +1

is this Possible in Aureana client as well? I tried the same sql statement but it triggers and error.  

Reply