execute query-lov problem [message #235823] |
Tue, 08 May 2007 01:52 |
karthick2809
Messages: 50 Registered: April 2007 Location: Chennai
|
Member |
|
|
hi experts,
i have designed a form using forms 9i for the table
create table emp( emp_id number,emp_name varchar2(20),dept_id number);
there is a master table for depatment
create table dept(dept_id number,dept_name varchar2(20);
In the datablock emp i have got 3 fields.
emp_id -----database item
emp_name -----database item
dept_name -----non data base item
i have got an lov emp_lov for the dept_name.when user chooses the lov item,the dept_id in lovgets mapped to the dept_id of emp table and dept_name gets displayed...
i have used post-query trigger to fetch the dept_name according to the emp_id..
but when evr i give execute query ,the lov which is set on the non database item dept_name gets fired...how can i stop that..please help me out with your valuable tips..
thanks in advance
|
|
|
|
|
|
|
|
|
Re: execute query-lov problem [message #237224 is a reply to message #237185] |
Sun, 13 May 2007 10:52 |
|
Littlefoot
Messages: 21823 Registered: June 2005 Location: Croatia, Europe
|
Senior Member Account Moderator |
|
|
Search through PL/SQL code units (all at once if you know how, or - if manually , triggers first, then - if necessary - the others) for statement. If / when you find it, comment it (put double 'minus' -- sign in front of it), recompile and run the form.
|
|
|