Hi Sir,
my table is in following format.
SQL> desc dept
Name Null? Type
----------------------------------------- -------- --------------------------
DEPTNO NOT NULL NUMBER
DNAME VARCHAR2(15)
LOC VARCHAR2(15)
select * from dept;
DEPTNO DNAME LOC
------ --------------- ---------------
10 ACCOUNTING NEW YORK
20 RESEARCH DALLAS
30 SALES CHICAGO
40 OPERATIONS BOSTON
My problem is that i want to create an LOV'S for the column deptno and if i use item mirror property for the other columns then it throws an error: FRM-32084: You specified an item that is an incompatible mirror item property.if i don't then the other fields display irrelevant data.
Then how to resolve this issue.
Thanks In advance.
Regards,
Jayanth.