LOV- Automatic [message #177567] |
Thu, 15 June 2006 09:05 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
rfoerst
Messages: 9 Registered: March 2005
|
Junior Member |
|
|
I am trying to have the List of Values for a field activated based on a value from another field. If the value in field-A is 'X', then I would like to activate the LOV for field-B programmatically, if the value of field-A is any other value than 'X' then I do not want the LOV for field-B to be displayed automatically.
Thanks
Rick
|
|
|
|
Re: LOV- Automatic [message #197369 is a reply to message #177567] |
Wed, 11 October 2006 01:42 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) |
shahidmughal
Messages: 91 Registered: January 2006 Location: Faisalabad Pakistan
|
Member |
![shahid_mughal82%40yahoo.com](/forum/theme/orafaq/images/yahoo.png)
|
|
hi
I am trying to have the List of Values for a field activated based on a value from another field. If the value in field-A is 'X', then I would like to activate the LOV for field-B programmatically, if the value of field-A is any other value than 'X' then I do not want the LOV for field-B to be displayed automatically.
to solve ur problem
try this trigger
on
Key-Next_item
declare
a boolean;
begin
if field-A = 'x' then
a := show_lov('lov_name');
else
next_field;
end if;
end;
|
|
|