r12

classic Classic list List threaded Threaded
7 messages Options
Reply | Threaded
Open this post in threaded view
|

r12

satish
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?
Reply | Threaded
Open this post in threaded view
|

Re: r12

ErmanArslansOracleBlog
Administrator
First of all;

Create issues in related category.
This one needs to be in EBS 12.2 category!
So I m moving this one to the EBS 12.2 category.

Next time, pay attention for that.
Reply | Threaded
Open this post in threaded view
|

Re: r12

satish
sure erman
Reply | Threaded
Open this post in threaded view
|

Re: r12

ErmanArslansOracleBlog
Administrator
How did you add this custom tops?

you needed to follow "Creating a Custom Application in Oracle E-Business Suite Release 12.2 (Doc ID 1577707.1)"
Reply | Threaded
Open this post in threaded view
|

Re: r12

satish
Hi Erman,

Agree.Thanks for the update.This is not custom top.we have created these 2 folders for inbound and outbound interfaces.If you look into our APPSROLA_HISTNAM.env you can see the entry for customfile=/u02/rolaINST/fs2/inst/apps/ROLA_HISTNAM/appl/admin/customROLA_HISTNAM.env and this will not be over written by autoconfig.we only have issue after cutover and we are missing this file
Reply | Threaded
Open this post in threaded view
|

Re: r12

satish
Any idea?
Reply | Threaded
Open this post in threaded view
|

Re: r12

ErmanArslansOracleBlog
Administrator
Yes it seems normal. (fs_clone recreates the APPL_TOP in a way that makes your custom env to be removed.)

For making custom env persistent accross fs_clone  ->you have 2 options:

1)using adop_sync.drv file as per the steps in 1577661.1. (for specifically custom env file)
2)create the custom env file in $INST_TOP/appl/admin directory of both RUN and PATCH file systems. After that, set your s_custom_file variable to this file.  (fs_clone doesn't touch the inst_top)

This is already answered in Oracle Community.