|  | 
		Hi Erman,
 Every time after i think after cutover we are missing the customROLA_HISTNAM.env file and our INBOUND and OUTBOUND TOP's are not set.we have placed the file under $INST_TOP/appl/admin
 customfile=/u02/rolaINST/fs2/inst/apps/ROLA_HISTNAM/appl/admin/customROLA_HISTNAM.env
 
 
 [applsupp@HISTNAM ERP]$ cd $APPL_TOP
 [applsupp@HISTNAM appl]$ pwd
 /u01/SUPPDBAPPS/fs2/EBSapps/appl
 [applsupp@HISTNAM appl]$ ls -lrt *.env
 -rw-r--r--. 1 applsupp dba  1558 Oct  6 09:11 APPSROLA_HISTNAM.env
 -rw-r--r--. 1 applsupp dba 19125 Oct  6 09:11 ROLA_HISTNAM.env
 
 
 
 
 [applsupp@HISTNAM appl]$ cat APPSROLA_HISTNAM.env
 :
 # $Header: APPSORA_ux.env 120.0.12020000.7 2015/10/29 11:21:35 ttsharma ship $
 # =============================================================================
 # NAME
 #    APPSORA.env
 #
 # DESCRIPTION
 #    Execute environment for Oracle and APPL_TOP
 #
 # NOTES
 #
 # HISTORY
 #
 # =============================================================================
 #
 # ###############################################################
 #
 # Do not edit settings in this file manually. They are managed
 # automatically and will be overwritten when AutoConfig runs.
 # For more information about AutoConfig, refer to the Oracle
 # E-Business Suite Setup Guide.
 #
 # ###############################################################
 
 
 #
 # Source the custom file if it exists
 
 
 main()
 {
 currentHost=`hostname|sed 's/\..*//g'|tr "[A-Z]" "[a-z]"`
 host=`echo "HISTNAM"|tr "[A-Z]" "[a-z]"`
 exit_status=0
 if [ $host != $currentHost ]; then
 echo "ERROR: This env should be sourced from $host !"
 exit_status=1
 fi
 
 
 customfile=/u02/rolaINST/fs2/inst/apps/ROLA_HISTNAM/appl/admin/customROLA_HISTNAM.env
 
 
 if [  -f $customfile ]; then
 . /u02/rolaINST/fs2/inst/apps/ROLA_HISTNAM/appl/admin/customROLA_HISTNAM.env
 fi
 
 
 . /u02/rolaINST/fs2/inst/apps/ROLA_HISTNAM/ora/10.1.2/ROLA_HISTNAM.env
 . /u01/SUPPDBAPPS/fs2/EBSapps/appl/ROLA_HISTNAM.env
 
 
 return $exit_status
 }
 
 
 [applsupp@HISTNAM appl]$
 
 
 
 
 entry in context file as below
 
 
 <oa_env_file type="custom" oa_var="s_custom_file" osd="unix">/u02/rolaINST/fs2/inst/apps/ROLA_HISTNAM/appl/admin/customROLA_HISTNAM.env</oa_env_file>
 
 
 can you please let us know if we need to place this file in any other location other than INST_TOP?
 |