Adsense

Wednesday, 7 August 2013

Oracle Apps: How to enable auto compile flag

 
Step1:
From your ssh cd $INST_TOP
 
Step 2:
cd ora/10.1.3/j2ee/oacore/application-deployments/oacore/html
 
Step 3:
Get orion-web.xml file
 
Step4:
Change the value of 'main_mode' to 'recompile'
        <init-param>
         <param-name>main_mode</param-name>
         <param-value>recompile</param-value>
      </init-param>
 
Step 5:
Change the value of 'debug_mode' to 'true'
       <init-param>
         <param-name>debug_mode</param-name>
         <param-value>true</param-value>
      </init-param>
 
Step 6:
Bounce Apche
Done :)

No comments:

Post a Comment