Oracle Apps: Disable LOV through CUSTOM.pll [message #143642] |
Fri, 21 October 2005 06:03 |
jainamit12
Messages: 3 Registered: May 2005 Location: Bangalore
|
Junior Member |
|
|
Hi,
I need to disable the LOV attached to SR Form in Oracle Service in Oracle Applications 11.5.10 through CUSTOM.pll.
I am using following code in the procedure of Event of Custom.pll :
begin
if ( (event_name = 'WHEN-NEW-BLOCK-INSTANCE') and (form_name = 'CSXSRISR')
and (block_name = 'INCIDENT_TRACKING')) then
APP_ITEM_PROPERTY.SET_PROPERTY('INCIDENT_TRACKING.PHONE',ALTERABLE, PROPERTY_ON);
set_ITEM_property('INCIDENT_TRACKING.PHONE',LOV_NAME, '');
set_ITEM_property('INCIDENT_TRACKING.PHONE',VALIDATE_FROM_LIST, PROPERTY_FALSE);
end if;
end;
Any help would be appreciated.
Regards,
Amit Jain
|
|
|