Home » Applications » Oracle Fusion Apps & E-Business Suite » How to create value set (11i)
How to create value set [message #474003] |
Wed, 01 September 2010 23:56  |
yknev
Messages: 38 Registered: August 2010
|
Member |
|
|
Hi All,
I would like to create a report with Parameters. I have doubt on creation of Parameter while registering of report. Could hlep me..
My code:-
SQL> select * from table1;
SINO VNAME SAL ISS_DT
---------- ---------- ---------- ---------
5 ANTONY 02-SEP-10
1 SMITH 1000 01-JAN-10
2 ALLEN 2000 01-FEB-10
1 LION 2000 26-JAN-10
3 TIGER 4000 15-MAR-10
VISION 4000 13-MAR-10
3 VISION 2000 10-SEP-09
7 rows selected.
SQL> select * from table1
2 where iss_dt>='21-JAN-2010';
SINO VNAME SAL ISS_DT
---------- ---------- ---------- ---------
5 ANTONY 02-SEP-10
2 ALLEN 2000 01-FEB-10
1 LION 2000 26-JAN-10
3 TIGER 4000 15-MAR-10
VISION 4000 13-MAR-10
SQL> select * from table1
2 where iss_dt>='21-JAN-2010'
3 and sal is not null;
SINO VNAME SAL ISS_DT
---------- ---------- ---------- ---------
2 ALLEN 2000 01-FEB-10
1 LION 2000 26-JAN-10
3 TIGER 4000 15-MAR-10
VISION 4000 13-MAR-10
SQL> select * from table1
2 where iss_dt>='21-JAN-2010'
3 and sal is not null
4 and sino is not null;
SINO VNAME SAL ISS_DT
---------- ---------- ---------- ---------
2 ALLEN 2000 01-FEB-10
1 LION 2000 26-JAN-10
3 TIGER 4000 15-MAR-10
Now, i want to create one parameter with List of values(LOV)like
Parameter Name:- SAL
List of Values:- ALL (i want to execute upto:- iss_dt>='21-JAN-2010')
SAL (I want to execute upto:- and sal is not null)
SINO(my quey execute upto:- FULL Query|)
How to create the Parameters using above conditions. Please help me.
Regards,
Yknev.
|
|
|
|
Goto Forum:
Current Time: Fri May 02 03:27:32 CDT 2025
|