Using List options

Caligula

Member
I want to use list options as written in the manual.
I use the sample:

select * from emp
where deptno = &

order by ename

with results in a errorbox.
With the message:
Department number: Descriptive list requiers a even number of items: Desclist = Value,description,value, description

Is the sample wrong or is it i'm doing wrong?
 
Hmm, this seems to be a bug. It only works if you place all items on one line:
Code:
select * from emp
where deptno = &<name="Department number"
                 list="10, ACCOUNTING, 20, RESEARCH, 30, SALES, 40, OPERATIONS"
                 description="yes">
order by ename
 
Back
Top