Hi,
I have a report which runs against a query with parametrised subquery. The report will prompt the user for two input dates. The query looks like this
select table1.field1, table2.filed2 from table1 inner join table2 on table1.field3 = table2.field3 where table1.field4 in (select field4 from table1 where field5 = 'value1' and field6 >= start_date and field6 <= end_date) and table1.field6 >= start_date and table1.field6 <= end_date;
The user is getting prompted now with start_date and end_date. Is it possible to make this report run propting the user to enter the value at the same time using a form instead of prompting him twice (since the query is driving the prompting now)
takeover
I have a report which runs against a query with parametrised subquery. The report will prompt the user for two input dates. The query looks like this
select table1.field1, table2.filed2 from table1 inner join table2 on table1.field3 = table2.field3 where table1.field4 in (select field4 from table1 where field5 = 'value1' and field6 >= start_date and field6 <= end_date) and table1.field6 >= start_date and table1.field6 <= end_date;
The user is getting prompted now with start_date and end_date. Is it possible to make this report run propting the user to enter the value at the same time using a form instead of prompting him twice (since the query is driving the prompting now)
takeover