Showing posts with label form personlizations. Show all posts
Showing posts with label form personlizations. Show all posts

Monday, 27 January 2014

Disable Record History in oracle apps through custompll

Step1:---
===============
Download   Custom.pll    from   Server   to   Local Machine
 
2) Open   Custom.pll    through   by  Form  Builder


 
begin
   if event_name = 'WHEN-NEW-FORM-INSTANCE' then
         if fnd_profile.value('USER_ID') = 1318    THEN
                  SET_MENU_ITEM_PROPERTY ('HELP.DIAGNOSTICS',  ENABLED,PROPERTY_FALSE);
       ELSE                                         
              SET_MENU_ITEM_PROPERTY ('HELP.RECORD_HISTORY',  VISIBLE,  PROPERTY_FALSE); 
     END IF;                                                                            
  End if;                                         
end event;     

 
frmcmp_batch  module=CUSTOM.pll  userid=apps/apps  output_file=CUSTOM.plx module_type=LIBRARY   batch=yes    compile_all=speciall
   ] . APPSTVIS_erpuat1.env
   ] cd    $AU_TOP
   ]cd     resource


     Generate  custom.plx    file    generated    in   AU_TOP