Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> set_item_property query
I am attempting to disable and enable fields by block to control the flow of
the form. I have been able to enable and disable navigating to fields but I
am running into a problem when I re-enable a block in which a field has an
LOV attached to it. When I re-enable that block I can no longer use F9 to
call the LOV. In fact the form shows no LOV associated with the field at
all. I've tried using the set_item_property to re-enable the LOV for that
field but I'm doing something wrong since it still doesn't work.
Can anybody tell me what is wrong with the following code when it comes to re-enabling the LOV?
set_item_property('section.sect_code',ENABLED,PROPERTY_TRUE); set_item_property('section.sect_code',NAVIGABLE,PROPERTY_TRUE);
set_item_property('section.dept_code',ENABLED,PROPERTY_TRUE); set_item_property('section.dept_code',NAVIGABLE,PROPERTY_TRUE); set_item_property('section.dept_code',LOV_NAME,'VALID_DEPARTMENTS');
set_item_property('section.sect_desc',ENABLED,PROPERTY_TRUE); set_item_property('section.sect_desc',NAVIGABLE,PROPERTY_TRUE);
Thank you very much,
Dereck L. Dietz
dietzdl_at_ameritech.net
Received on Sun Jun 27 2004 - 14:23:09 CDT