multiselect report variables

sagizvi

Member²
I wish to use the report variables option in order to enable the user to multiselect values.

for example :
where object_Type in &

the user should select few values, and not just one.

how can i do this?
 
Hi,

this is decribed in the PLSQL Developer Help. Look at Reports/Variables.

Example from there:
"List option
The list option provides the user with a list of possible values. You can specify a comma-separated list of items:

select * from emp
where deptno = &
 
Back
Top