Skip to main content
Solved

quick report datepicker for parameter

  • May 20, 2020
  • 7 replies
  • 1512 views

savasciftci
Sidekick
Forum|alt.badge.img+7

Hi,

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

 

Best answer by Sajith D

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

7 replies

Forum|alt.badge.img+21
  • Superhero (Employee)
  • 427 replies
  • May 20, 2020

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


savasciftci
Sidekick
Forum|alt.badge.img+7
  • Author
  • Sidekick
  • 37 replies
  • May 20, 2020

Hi @Sajith D ,

 

Yes SQL statement.


Forum|alt.badge.img+21
  • Superhero (Employee)
  • 427 replies
  • Answer
  • May 21, 2020

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


savasciftci
Sidekick
Forum|alt.badge.img+7
  • Author
  • Sidekick
  • 37 replies
  • May 21, 2020

Thanks @Sajith D 


Forum|alt.badge.img+1
  • Do Gooder (Employee)
  • 4 replies
  • November 4, 2021

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


Forum|alt.badge.img+7
  • Hero (Customer)
  • 27 replies
  • November 5, 2021

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


Forum|alt.badge.img+1
  • Do Gooder (Partner)
  • 1 reply
  • March 21, 2022

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