How to run autoconfig using context file

In this post we will discuss how to run AutoConfig with a specific context file in Oracle E-Business Suite R12.

  1. First of all Specify the Context File:

When executing the adautocfg.sh script, you need to provide the full path to the context file you want to use as an argument.

$./adautocfg.sh /data01/app/oracle/apps/inst/apps/PROD_apps/appl/admin/PROD_apps.xml

  1. Alternative Method (adconfig.sh):

If you prefer using adconfig.sh directly, specify the context file with the contextfile parameter:

$ /adconfig.sh contextfile=/data01/app/oracle/apps/inst/apps/PROD_db/appl/admin/PROD_apps.xml

Check Proposed Changes: Sometimes autoconfig makes changes unexpectedly. So before running AutoConfig, use adchkcfg.sh to review intended changes and identify potential issues:

$./adchkcfg.sh contextfile=/data01/app/oracle/apps/inst/apps/PROD_db/appl/admin/PROD_apps.xml

Leave a Comment