Upgrade R12.0.4 DB 10.2.0.3 to 11.1.0.7

Hi All,
I have followed the below steps to upgrade R12 DB on SLES 10 SP2 from 10g to 11g
3- Perform pre-requsites for patch 6928236
4- Apply INTEROPERABILITY PATCH 6928236
5- Apply TXK - 12.0.4 Consolidated Patch 1 7207440
6- Perform patch 7207440 post install steps
7- Apply patch 6400501 to applicaition tier, follow these steps:
     cd /oracle/apps/prod/a*/a*/a*
. ./APPSPROD_prod.env
export PATH=$PATH:$ORACLE_HOME/OPatch
cd /oracle/patches/apps/6400501
     opatch lsinventory -invPtrLoc $INST_TOP/admin/oraInst.loc
opatch apply -invPtrLoc $INST_TOP/admin/oraInst.loc
After patch is applied do the following:
cd $ORACLE_HOME/forms/lib
make -f ins_forms.mk install
cd $ORACLE_HOME/reports/lib
`
8- Apply timezone V4 patch 5632264 to 10g DB (OLD DB) using opatch apply. shutdown and start it up again for the change to take effect
     export PATH=$PATH:$ORACLE_HOME/OPatch
     cd /oracle/patches/db/5632264
     opatch lsinventory -invPtrLoc $ORACLE_HOME/oraInst.loc
     opatch apply -invPtrLoc $ORACLE_HOME/oraInst.loc     
9- gedit /home/oracle/.bash_profile Create (create it if it doesn't exist) and write in it
# Oracle Settings
TMP=/tmp; export TMP
TMPDIR=$TMP; export TMPDIR
ORACLE_BASE=/oracle/apps/prod/db11; export ORACLE_BASE
ORACLE_HOME=$ORACLE_BASE/tech_st/11.1.0; export ORACLE_HOME
ORACLE_SID=PROD; export ORACLE_SID
LD_LIBRARY_PATH=$ORACLE_HOME/lib; export LD_LIBRARY_PATH
PATH=$ORACLE_HOME/bin:$ORACLE_HOME/perl/bin:$PATH; export PATH
PERL5LIB=$ORACLE_HOME/perl/lib/5.8.3:$ORACLE_HOME/perl/lib/site_perl/5.8.3 export PERL5LIB
TNS_ADMIN=$ORACLE_HOME/network/admin; export TNS_ADMIN
10- Install Oracle Database 11gR1 software only using the command
./runInstaller -invPtrLoc /oracle/apps/prod/db11/tech_st/11.1.0/admin/oui/PROD_prod/oraInventory/oraInst.loc
In the Installation Types window, use the Product Languages button to select any languages other than American English that are used by your Applications database instance. Choose the Enterprise Edition installation type. In the subsequent windows, select the options not to upgrade an existing database and to install the database software only. Select Oracle Home Name to be PROD_db111_RDBMS
11- Install Oracle Database 11g Products from the 11g Examples CD using the command
./runInstaller -invPtrLoc /oracle/apps/prod/db11/tech_st/11.1.0/admin/oui/PROD_prod/oraInventory/oraInst.loc
In the Installation Types window, use the Product Languages button to select any languages other than American English that are used by your Applications database instance.
12- Set ENV variables in /home/oracle/.bash_profile
ORACLE_BASE=/oracle/apps/prod/db11; export ORACLE_BASE
ORACLE_HOME=$ORACLE_BASE/tech_st/11.1.0; export ORACLE_HOME
LD_LIBRARY_PATH=$ORACLE_HOME/lib; export LD_LIBRARY_PATH
PATH=$ORACLE_HOME/bin:$ORACLE_HOME/perl/bin:$PATH; export PATH
PERL5LIB=$ORACLE_HOME/perl/lib/5.8.3:$ORACLE_HOME/perl/lib/site_perl/5.8.3 export PERL5LIB
13- Install Oracle Database 11gR1 Patchest 7 using the command
./runInstaller -invPtrLoc /oracle/apps/prod/db11/tech_st/11.1.0/admin/oui/PROD_prod/oraInventory/oraInst.loc
14- Run $ORACLE_HOME/perl/bin/perl $ORACLE_HOME/nls/data/old/cr9idata.pl
15- Add the following line to /home/oracle/.bash_profile ORA_NLS10=/oracle/apps/prod/db11/tech_st/11.1.0/nls/data/9idata; export ORA_NLS10
16- export $PATH:$ORACLE_HOME/OPatch
17- cp $ORACLE_HOME/oraInst.loc /etc
18- opatch lsinventory
19- Apply patch 7486407 to 11g home using
     opatch apply
20- Apply patch 7684818 to 11g home using
     opatch napply -skip_subset -skip_duplicate
21- Gather stats for dictionary tables on the 10g DB (OLD DB) using exec dbms_stats.gather_dictionary_stats;
22- Extende old Database tablespace SYSAUX to be 500 using the following command
A- alter database datafile '/oracle/apps/prod/db/apps_st/data/sysaux01.dbf' resize 500m;
B- alter database datafile '/oracle/apps/prod/db/apps_st/data/sysaux01.dbf' autoextend on;
23- Run the Oracle Net Configuration Assistant, to start Oracle Net Configuration Assistant run
netca from $ORACLE_HOME/bin.
24- Edit /etc/oratab and add the following line PROD:/oracle/apps/prod/db/tech_st/10.2.0:N otherwise DBUA will not find the old DB
25- MANDATORY STEP: Copy the initPROD.ora file from Linux Patches to $ORACLE_HOME/dbs
26- copy new DB oraInst.loc to etc cp $ORACLE_HOME/oraInst.loc /etc/oraInst.loc
26- Upgrade the Database Using the Database Upgrade Assistant from 11gR1 database and follow the steps
     run dbua to start the Database Upgrade Assistant
The upgrade failes in the post-upgrade steps were it's creating the control file for the new database (during the DBUA i have specifed that i need to move DB files to a new location) with the error ORA-01166: file number 288 is larger than MAXDATAFILES (100) ORA-01110: data file 288: '$ORACLE_HOME/apps_st/data/PROD/system10.dbf'
I have checked DB_FILES in initPROD.ora and it's 512 I also checked the MAXDATAFILES in the control file from source 10g DB and it's 512 (i used alter database backup controfile to trace to get the maxdatafiles value)
Any ideas how to fix this issue?
Appreciate your help.
Mohammed Tammous

Create a sql script file create_controlfile.sql. Open a trace log, and find something similar to:
show sqlprompt
set sqlprompt 'SQL>'
Create controlfile reuse set database "INSTANCE_NAME"
MAXINSTANCES 8
MAXLOGHISTORY 1
MAXLOGFILES 16
MAXLOGMEMBERS 3
MAXDATAFILES 100
Datafile
'/disk1/dbtier/db/oradata/INSTANCE_NAME/system01.dbf',
'/disk1/dbtier/db/oradata/INSTANCE_NAME/system02.dbf',
'/disk1/dbtier/db/oradata/INSTANCE_NAME/system03.dbf',
'/disk1/dbtier/db/oradata/INSTANCE_NAME/system04.dbf',
'/disk1/dbtier/db/oradata/INSTANCE_NAME/system05.dbf',
'/disk1/dbtier/db/oradata/INSTANCE_NAME/ctxd01.dbf',
'/disk1/dbtier/db/oradata/INSTANCE_NAME/owad01.dbf',
'/disk1/dbtier/db/oradata/INSTANCE_NAME/a_queue02.dbf',
'/disk1/dbtier/db/oradata/INSTANCE_NAME/odm.dbf',
'/disk1/dbtier/db/oradata/INSTANCE_NAME/olap.dbf',
'/disk1/dbtier/db/oradata/INSTANCE_NAME/a_tools1.dbf',
'/disk1/dbtier/db/oradata/INSTANCE_NAME/a_ref03.dbf',
'/disk1/dbtier/db/oradata/INSTANCE_NAME/xx_cdf_data1.dbf',
'/disk1/dbtier/db/oradata/INSTANCE_NAME/xx_cdf_idx1.dbf',
'/disk1/dbtier/db/oradata/INSTANCE_NAME/system10.dbf',
'/disk1/dbtier/db/oradata/INSTANCE_NAME/system06.dbf',
'/disk1/dbtier/db/oradata/INSTANCE_NAME/portal01.dbf',
'/disk1/dbtier/db/oradata/INSTANCE_NAME/system07.dbf',
'/disk1/dbtier/db/oradata/INSTANCE_NAME/system09.dbf',
'/disk1/dbtier/db/oradata/INSTANCE_NAME/system08.dbf',
'/disk1/dbtier/db/oradata/INSTANCE_NAME/system11.dbf',
'/disk1/dbtier/db/oradata/INSTANCE_NAME/undo01.dbf',
'/disk1/dbtier/db/oradata/INSTANCE_NAME/a_txn_data01.dbf',
'/disk1/dbtier/db/oradata/INSTANCE_NAME/a_txn_ind01.dbf',
'/disk1/dbtier/db/oradata/INSTANCE_NAME/a_ref01.dbf',
'/disk1/dbtier/db/oradata/INSTANCE_NAME/a_int01.dbf',
'/disk1/dbtier/db/oradata/INSTANCE_NAME/a_summ01.dbf',
'/disk1/dbtier/db/oradata/INSTANCE_NAME/a_nolog01.dbf',
'/disk1/dbtier/db/oradata/INSTANCE_NAME/a_archive01.dbf',
'/disk1/dbtier/db/oradata/INSTANCE_NAME/a_queue01.dbf',
'/disk1/dbtier/db/oradata/INSTANCE_NAME/a_media01.dbf',
'/disk1/dbtier/db/oradata/INSTANCE_NAME/a_txn_data02.dbf',
'/disk1/dbtier/db/oradata/INSTANCE_NAME/a_txn_data03.dbf',
'/disk1/dbtier/db/oradata/INSTANCE_NAME/a_txn_ind02.dbf',
'/disk1/dbtier/db/oradata/INSTANCE_NAME/a_txn_ind03.dbf',
'/disk1/dbtier/db/oradata/INSTANCE_NAME/a_txn_ind04.dbf',
'/disk1/dbtier/db/oradata/INSTANCE_NAME/a_txn_ind05.dbf',
'/disk1/dbtier/db/oradata/INSTANCE_NAME/a_ref02.dbf',
'/disk1/dbtier/data/sysaux01.dbf'
LOGFILE GROUP 1 (>'/disk1/dbtier/db/oradata/INSTANCE_NAME/log01a.dbf',>'/disk1/dbtier/db/oradata/INSTANCE_NAME/log01b.dbf' ) SIZE 10240K,
GROUP 2 (>'/disk1/dbtier/db/oradata/INSTANCE_NAME/log02a.dbf',>'/disk1/dbtier/db/oradata/INSTANCE_NAME/log02b.dbf' ) SIZE 10240K RESETLOGS;
set heading off
set timing off
set pagesize 0
set feedback off
set linesize 2048
set sqlprompt 'SQL_ENGINE_END_OF_SQL'
show sqlprompt
set sqlprompt 'SQL>'Copy this to your create_controlfile.sql and change MAXDATAFILES 100 to MAXDATAFILES 1024. Then connect to database with sqlplus as sysdba user and run @create_controlfile.sql

Similar Messages

  • Cast error in upgrading R12 from 11i

    Hi,
    We are upgrading Oracle R12 from 11i.
    In iExpnese-- DetailsCO I am getting the error i.e.- oracle.apps.fnd.framework.webui.beans.message.OAMessageChoiceBean cannot be cast to oracle.apps.fnd.framework.webui.beans.message.OAMessageLovInputBean..when selecting a value from custom DFF enabled in DetailsPG.
    This DFF is also enabled in 11i and this code is running perfectly in 11i. I want to know is there any changes in the functionality of R12 for this error?
    Your help is highly appreciated.
    Please reply.
    Thanks
    Vikram

    Class Cast Exception should come the moment you page loads. Can you please confirm exactly when you get exception.
    Regards
    Shobhit S

  • Post upgrade R12.1.1 to R12.1.3 invlid objects

    Dear Experts,
    Kindly note that i have performed the upgrade from R12.1.1 to R12.1.3 .
    I have noted the below invalid objects.
    APPS     MSC_CL_PULL     PACKAGE BODY     INVALID
    APPS     RLM_MANAGE_DEMAND_SV     PACKAGE BODY     INVALID
    APPS     RLM_RD_SV     PACKAGE BODY     INVALID
    APPS     RLM_EXTINTERFACE_SV     PACKAGE BODY     INVALID
    APPS     ISC_EDW_BOOK_SUM1_F_C     PACKAGE BODY     INVALID
    APPS     OPI_EDW_OPMINV_DAILY_STAT_F_C     PACKAGE BODY     INVALID
    APPS     OKL_REVERSE_CONTRACT_PVT     PACKAGE BODY     INVALID
    APPS     OKL_ACC_GROUP_PVT     PACKAGE BODY     INVALID
    APPS     OKL_TRANS_CONTRACTS_PVT_W     PACKAGE BODY     INVALID
    APPS     OKL_TRANSACTION_PVT_W     PACKAGE BODY     INVALID
    APPS     OKL_GENERATE_ACCRUALS_PUB     PACKAGE BODY     INVALID
    APPS     OKL_LA_JE_PUB     PACKAGE BODY     INVALID
    APPS     OKL_CONTRACT_REBOOK_PUB     PACKAGE BODY     INVALID
    APPS     OKL_TRANSACTION_PUB     PACKAGE BODY     INVALID
    APPS     OKL_AM_ASSET_DISPOSE_PVT     PACKAGE BODY     INVALID
    APPS     OKL_AM_ASSET_RETURN_PVT     PACKAGE BODY     INVALID
    APPS     OKL_AM_CONSOLIDATED_QTE_PVT     PACKAGE BODY     INVALID
    APPS     OKL_INTEREST_CALC_PVT     PACKAGE BODY     INVALID
    APPS     OKL_LA_JE_PVT     PACKAGE BODY     INVALID
    APPS     OKL_AM_BTCH_EXP_LEASE_LOAN_PVT     PACKAGE BODY     INVALID
    APPS     OKL_AM_LOAN_TRMNT_PVT     PACKAGE BODY     INVALID
    APPS     OKL_LOSS_PROV_PVT     PACKAGE BODY     INVALID
    APPS     OKL_MISC_TRANS_PVT     PACKAGE BODY     INVALID
    APPS     OKL_AM_QUOTES_WF     PACKAGE BODY     INVALID
    APPS     OKL_REV_LOSS_PROV_PVT     PACKAGE BODY     INVALID
    APPS     OKL_AM_REPURCHASE_ASSET_PVT     PACKAGE BODY     INVALID
    APPS     OKL_AM_RESTRUCTURE_RENTS_PVT     PACKAGE BODY     INVALID
    APPS     OKL_AM_RECYCLE_TRMNT_PVT     PACKAGE BODY     INVALID
    APPS     OKL_SPLIT_CONTRACT_PVT     PACKAGE BODY     INVALID
    APPS     OKL_TRANS_CONTRACTS_PVT     PACKAGE BODY     INVALID
    APPS     OKL_GENERATE_ACCRUALS_PUB_W     PACKAGE BODY     INVALID
    APPS     OKL_ACCOUNTING_UPDATE_PUB_W     PACKAGE BODY     INVALID
    APPS     OKL_ACC_GROUP_PUB_W     PACKAGE BODY     INVALID
    APPS     OKL_CONTRACT_REBOOK_PUB_W     PACKAGE BODY     INVALID
    APPS     OKL_AM_REPURCHASE_ASSET_PUB_W     PACKAGE BODY     INVALID
    APPS     OKL_TRX_CONTRACTS_PUB_W     PACKAGE BODY     INVALID
    APPS     OKL_TRANS_CONTRACTS_PUB_W     PACKAGE BODY     INVALID
    APPS     OKL_TRX_TYPES_PUB_W     PACKAGE BODY     INVALID
    APPS     OKL_TXL_QUOTE_LINES_PUB_W     PACKAGE BODY     INVALID
    APPS     OKL_TRANSACTION_PUB_W     PACKAGE BODY     INVALID
    APPS     OKL_PROCESS_TRX_TYPES_PUB_W     PACKAGE BODY     INVALID
    APPS     OKL_SERVICE_INTEGRATION_PVT     PACKAGE BODY     INVALID
    APPS     FTE_TP_GRP     PACKAGE BODY     INVALID
    APPS     OKL_VENDOR_AGREEMENT_PUB     PACKAGE BODY     INVALID
    APPS     OKL_PERIOD_SWEEP_PVT     PACKAGE BODY     INVALID
    APPS     OKL_VSS_WF     PACKAGE BODY     INVALID
    APPS     WSH_FTE_TP_INTEGRATION     PACKAGE BODY     INVALID
    APPS     WSH_TP_RELEASE_INT     PACKAGE BODY     INVALID
    APPS     OKL_AM_BAL_WRITEOFF_PVT     PACKAGE BODY     INVALID
    APPS     OKL_PROCESS_PPD_PVT     PACKAGE BODY     INVALID
    APPS     OKL_AM_TERMNT_VENDOR_PRG_PVT     PACKAGE BODY     INVALID
    please advise.
    Mohammed. Abdul Muqeet

    Recompiled the invalid objects using the adadmin.What is the error you get if you compile the objects manually?
    I have noticed only these are remaining..
    OWNER     OBJECT_NAME     OBJECT_TYPE     STATUS
    APPS     MSC_CL_PULL     PACKAGE BODY     INVALID
    APPS     RLM_MANAGE_DEMAND_SV     PACKAGE BODY     INVALID
    APPS     RLM_RD_SV     PACKAGE BODY     INVALID
    APPS      RLM_EXTINTERFACE_SV     PACKAGE BODY     INVALID
    APPS     ISC_EDW_BOOK_SUM1_F_C     PACKAGE BODY     INVALID
    APPS      OPI_EDW_OPMINV_DAILY_STAT_F_C     PACKAGE BODY     INVALID
    APPS      OKL_ACCOUNTING_UPDATE_PUB_W     PACKAGE BODY     INVALID
    APPS      OKL_ACC_GROUP_PUB_W     PACKAGE BODY     INVALIDIf you are not using any of the above modules, you can safely ignore those invalid objects.
    Thanks,
    Hussein

  • Upgrade R12.0.6 to R12.1.3 results in disabled currency

    Hello,
    I was wondering if anyone has seen this when upgrading Oracle Financials R12.0.6 to R12.1.3: The foreign currency (in our case CAD) was disabled after the upgrade process. I had to manually go in and enable this currency.
    Thanks,
    Manish

    Hi;
    Please see:
    10.1.3.4 Upgrade Patchset Fails with: COPYRETRY : Retrying copy, due to exception [ID 849972.1]
    Regard
    Helios

  • Issue in Upgrading R12.1.2

    Hi ,
    I am facing an issue in upgrading EBS R12.0.0 to R12.1.2 (for PIP).while running the Autopatch it throws Code Base error 'B'. Please guide me to upgrade or suggest me some link for upgrading.
    Thanks
    Govindan P

    This patch is not compatible with your current codelines.
    This patch is compatible with: entity 'ad' - codeline 'R12.AD.B'.
    Your current on-site codeline for the entity 'ad' is: 'R12.AD.A'.Please see these docs.
    Is it Possible to Apply a Patch 12.0 With Codeline A On Top of 12.1 With Codeline B ? [ID 889702.1]
    Error Applying Patch 7303033 [ID 1053546.1]
    Thanks,
    Hussein

  • After Upgrade R12.1.3 Invalid OBjects Found

    Hi Friends,
    My Environment*
    Application Version: 12.1.3
    Db Version : 11.1.0.7
    OS Version : OEL4U5
    Recently I have upgraded My application from R12.1.1 to R12.1.3 and upgraded successfully,
    After upgrade i found that lot of invalid Objects are in Application (R12.1.3). for few objects i compiled manually and remaning i go with metalink id and then compiled.
    But am not able to compile the Following invalid objects
    owner object_name object_type
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    APPS     XLA_00707_AAD_C_000026_PKG PACKAGE BODY
    APPS     XLA_20065_AAD_C_000030_PKG PACKAGE BODY
    APPS     XLA_00707_AAD_C_000044_PKG PACKAGE BODY
    APPS     FSAH_DUPLICATE_PKG     PACKAGE BODY
    i try to manually compile the above invalid objects it throwing the below error in compilation.
    Please Find the error
    Issue 1:*
    SQL> alter package apps.XLA_00707_AAD_C_000044_PKG compile body;
    Warning: Package Body altered with compilation errors.
    SQL> show error
    Errors for PACKAGE BODY APPS.XLA_00707_AAD_C_000044_PKG:
    LINE/COL ERROR
    201067/1 PL/SQL: SQL Statement ignored
    *201180/1 PL/SQL: ORA-00904: "CST_XLA_INV_REF_V"."TRANSACTION_SOURCE_ID":*
    30 invalid identifier
    201501/1 PL/SQL: SQL Statement ignored
    *201545/1 PL/SQL: ORA-00904: "CST_XLA_INV_REF_V"."TRANSACTION_SOURCE_ID":*
    30 invalid identifier
    202327/5 PL/SQL: Statement ignored
    *202327/2 PLS-00364: loop index variable 'HEADER_RECORD' use is invalid*
    Issue 2:*
    SQL> alter package apps.XLA_00707_AAD_C_000026_PKG compile body;
    Warning: Package Body altered with compilation errors.
    SQL> show error
    Errors for PACKAGE BODY APPS.XLA_00707_AAD_C_000026_PKG:
    LINE/COL ERROR
    110048/1 PL/SQL: SQL Statement ignored
    *110161/1 PL/SQL: ORA-00904: "CST_XLA_INV_REF_V"."TRANSACTION_SOURCE_ID":*
    30 invalid identifier
    110480/1 PL/SQL: SQL Statement ignored
    *110524/1 PL/SQL: ORA-00904: "CST_XLA_INV_REF_V"."TRANSACTION_SOURCE_ID":*
    30 invalid identifier
    Issue 3:*
    SQL> alter package apps.XLA_20065_AAD_C_000030_PKG compile body;
    Warning: Package Body altered with compilation errors.
    SQL> show error
    Errors for PACKAGE BODY APPS.XLA_20065_AAD_C_000030_PKG:
    LINE/COL ERROR
    30260/1 PL/SQL: SQL Statement ignored
    30467/9 PL/SQL: ORA-00942: table or view does not exist
    30605/1 PL/SQL: Item ignored
    *30605/35 PLS-00201: identifier 'FSAH_MORTGAGES.TRANSACTION_DATE' must be declared*
    30606/1 PL/SQL: Item ignored
    *30606/35 PLS-00201: identifier 'FSAH_MORTGAGES.CUR_NET_BOOK_BAL' must be declared*
    30607/1 PL/SQL: Item ignored
    *30607/35 PLS-00201: identifier 'FSAH_MORTGAGES.DEFAULT_FLAG' must be declared*
    30608/1 PL/SQL: Item ignored
    *30608/35 PLS-00201: identifier 'FSAH_MORTGAGES.DEL_CUR_DAYS' must be declared*
    30609/1 PL/SQL: Item ignored
    *30609/36 PLS-00201: identifier 'FSAH_MORTGAGES.CUR_BOOK_BAL' must be declared*
    30610/1 PL/SQL: Item ignored
    *30610/36 PLS-00201: identifier 'FSAH_MORTGAGES.COMPANY_COST_CENTER_ORG_ID' must be declared*
    30611/1 PL/SQL: Item ignored
    *30611/36 PLS-00201: identifier 'FSAH_MORTGAGES.BRANCH_CODE' must be declared*
    30612/1 PL/SQL: Item ignored
    *30612/36 PLS-00201: identifier 'FSAH_MORTGAGES.PRODUCT_ID' must be declared*
    30613/1 PL/SQL: Item ignored
    *30613/36 PLS-00201: identifier 'FSAH_MORTGAGES.ACCRUED_INTEREST' must be declared*
    Kindly advice me to fix this
    Thanks
    Athish

    Athish,
    Please run utlrp.sql and utlirp.sql scripts as per (R12.1.1 - Invalid Objects After Patching [ID 1093163.1]).
    For some of the errors, looks like you have custom code, so please check with your development team to review/fix the code.
    Thanks,
    Hussein

  • Need to upgrade R12.AD.B.delta.2 to R12.AD.B.delta.3.

    Hi,
    Please tell me which patch or patches requried to upgrade the R12.AD.B.delta.2 to R12.AD.B.delta.3.
    and R12.AD.B.1 to R12.AD.B.2 and R12.AD.B.2 to R12.AD.B.3???
    thanks

    Hi,
    R12.AD.B.DELTA.3, Patch 9239089 -- Note: 1077769.1 - Oracle E-Business Suite Applications DBA Readme, Release 12.1.3 (R12.AD.B.DELTA.3, Patch 9239089) and Note: 1080973.1 - Oracle E-Business Suite Release 12.1.3 Readme
    R12.AD.B.DELTA.2, Patch 8502056 -- Note: 949406.1 - Oracle E-Business Suite Readme, Release 12.1.2 (Customer Recommended) and Note: 879322.1 - Oracle E-Business Suite Applications DBA Readme, Release 12.1.2
    Thanks,
    Hussein

  • Why to upgrade R12 from 11i?

    Hi there,
    I would like to get buy-in from business for upgrading from 11i to R12. I know there are lot of benefits but what are the risks for not upgrading besides losing Oracle support?
    We have the following modules on 11i for use - GL, AP, PO, INV, ONT, BOM, WIP, FA, PC, ASCP, iProcurement, iSupplier, iExpense, and HRMS.
    Thank you,
    Vinod

    Hi Vinod;
    Hussein Sawwan post already answer you. I just want to ask you one question. Let you assume I have oracle 8i or 10g database and i am making post here and asking " I am using Oracle 8i should I move Oracle 11g? What is benefit"
    I am sure you can think first " Its old version or it will not supported soon". Than secondly you can think " New version mean many bug fix and it has new future which i can use in future"
    Soo its same for EBS upgrade too, 11i will be unsupported soon so you need to upgrade.Also R12 has new tech.
    One other example we were using windows 2000 but we are using now Win7 and win 8 on way.. We were also use 512MB ram before and many pc has at least 3 Gb ram those days... Why we need to upgrade or OS or hardware? Coz new future need source and also bring us many new benefit.
    Hope i could show you to way to think or imagine why upgrade is neccessary always in IT.
    Check What Hussein Sawwan you can see many good think in it
    Regard
    Helios

  • Unable to find the seeded responsiblities post upgrade r12.1.3

    Dear Experts,
    kindly note that we are unable to find the below Responsiblities in our CRP Instance.
    Our Version is R12.1.3 + 11.2.0.3.
    Responsiblities
    1.AGIS SUPER USER
    2.PAYABLE SUPER USER
    3.Receivable Super User
    3.Fixed Assets Super User
    4.GL Super user
    5.AR Super user
    6.General Ledger Manager
    Regards
    Mohammed.

    What do you mean by unable to find them? Have you verified from (Security > Responsibility > Define) screen?
    Troubleshooting Missing Responsibilities For A User (Doc ID 429852.1)
    Missing Responsibilities after 12.1.3 Upgrade (Doc ID 1309852.1)
    Missing responsibilities in R12.1.3 (Doc ID 1423432.1)
    Thanks,
    Hussein

  • Getting error while upgrade R12.1.1 --------------- R 12.1.3

    i am applying patch 9817770.
    i am getting error
    AutoPatch error:
    Missing prerequisite codelevel for entity 'atg_pf'.
    This patch requires the following codelevel or higher: 'R12.ATG_PF.B.3'.
    The current on-site codelevel for the entity 'atg_pf' is : 'R12.ATG_PF.B.1'.
    In order to apply this patch you must first apply a patch that introduces
    at least the minimum required codelevel.
    You may merge this patch with a patch that introduces the required codelevel.
    AutoPatch error:
    A fatal error related to codelines or codelevels has occurred.
    See messages above for details.
    Freeing includes hash table
    Freeing fixes hash table
    Freeing basedons hash table
    Freeing entities hash table
    Patch read me says :
    Required Code levels
    This patch requires additional code levels to have been successfully
    applied to your system before it can be applied.  These code levels,
    as at the time that this patch was built, are listed below.  Please check
    *'My Oracle Support' to determine if any of these have been superseded*
    ** R12.AD.B.delta.3*
    ** R12.ATG_PF.B.delta.3*
    What does this mean ?
    Please guide me

    i started the whole upgrade process ( R12.1.1 ---------> R12.1.3) again from beginning.
    i applied patch 9239089.
    after that i am applying patch 8919491 :
    i am getting following message
    The following Oracle Forms objects did not generate successfully:
    au resource JTFGDIAG.pll
    au resource JTFSCGNT.pll
    au resource JTF_GRID.pll
    au resource ASTBOMAN.pll
    au resource ASTRCINT.pll
    au resource CSSRFND.pll
    au resource CSSRTSK.pll
    au resource APPCORE.pll
    au resource APPDAYPK.pll
    au resource FNDCONC.pll
    au resource FNDSQF.pll
    au resource CSSRISR.pll
    au resource CSSRWKB.pll
    au resource CSCSECPS.pll
    au resource CSPPLPLN.pll
    au resource CSPPLSPR.pll
    au resource CSPTRREC.pll
    au resource CSPTRVMO.pll
    au resource CSUTILS.pll
    au resource CSCCCCUS.pll
    au resource CSCMNTPN.pll
    au resource APPCORE2.pll
    au resource APPFLDR.pll
    au resource CSCSEDPN.pll
    au resource CSCUTILS.pll
    au resource CSCCCCRC.pll
    au resource CUSTOM.pll
    au resource FNDAPLT.pll
    au resource FNDATTCH.pll
    au resource VERT.pll
    au resource VERT2.pll
    au resource VERT3.pll
    au resource APPTREE.pll
    au resource VERT4.pll
    au resource JTFTKMAN.pll
    au resource VERT5.pll
    au resource VERT1.pll
    au resource JTFNOTES.pll
    au resource OKCEXEVT.pll
    au resource OKCKSRCH.pll
    au resource OKCADART.pll
    au resource OKSACTEV.pll
    au resource OKCEXPOR.pll
    au resource OKCTREE.pll
    au resource OKSAUDET.pll
    An error occurred while generating Oracle Forms library files.
    *Continue as if it were successful [No] :*
    I tried adadmin for generating form files :
    No oracle forms objects selected for generation.
    please reply how do i resolve and proceed further.

  • Upgrade R12 demo (12.1.1) to 12.1.3

    Hi,
    What's the process of upgrading our R12 demo system (installed using Rapid install) to 12.1.3. Currently it is on 12.1.1.
    Thanks for your help

    What's the process of upgrading our R12 demo system (installed using Rapid install) to 12.1.3. Currently it is on 12.1.1.https://forums.oracle.com/forums/search.jspa?threadID=&q=%27Upgrade+12.1.1+to+12.1.3%27&objID=f395&dateRange=all&userID=&numResults=15&rankBy=10001
    Please search the forum before posting similar questions.
    Thanks,
    Hussein

  • Upgrade R12.1.1 to R12.1.3 disconnects with no errors

    We are on 11.2.0.3 database on HP-UX
    Apps have just been upgraded from 11.5.10.2 to R12.1.1 ok
    We have applied 9239089 and are now applying 9239090.
    The patch 9239090 (12.1.3)  runs for about 2 hours successfully, but then disconnects for no apparent reason.
      No errors in worker files, patch log files, db alert log files and syslog files, it just stops, doesnt update ad_bugs or have any of the messages indicating it has completed.
    It always seems to bomb at the same point, here are the last few lines of the logfile:
    STOP_TASK: [Compile invalid objects in DB] [] [Wed Jul 10 2013 15:26:28]
    STRT_TASK: [Get final list of invalid objects in DB] [] [Wed Jul 10 2013 15:26:28]
    Number of invalid objects: 107
    Getting list of invalid objects in APPS schema.
    Has anyone seen this before?  We have a SR open, but they havent been much help so far.  We have run utlrp mutliple times the invalids stay the same.
    Anyone encountered this or have any suggestions on how to diagnose?
    Thanks

    AP_CCE_BANK_UPGRADE                                PACKAGE BODY
    ARBG_COLLECTION_CALLS                              VIEW
    ARBG_CUSTOMERS                                     VIEW
    ARBG_CUSTOMER_SITES                                VIEW
    ARBG_LOCATIONS                                     VIEW
    ARFG_AR_PAYMENT_SCHEDULES                          VIEW
    ARFG_CASH_RECEIPTS                                 VIEW
    ARFG_COLLECTION_CALLS                              VIEW
    ARFG_CUSTOMER_SITES                                VIEW
    ARFG_LOCATIONS                                     VIEW
    AR_FC_INVOICES_V                                   VIEW
    ASO_CC_ENCRYPT_CONC_REQ_PVT                        PACKAGE BODY
    AS_SALES_TEAM_V                                    VIEW
    CEBG_BANK_STATEMENTS                               VIEW
    CEBG_BANK_STATEMENT_LINES                          VIEW
    CEBG_CASH_FORECAST_CELLS                           VIEW
    CEFG_BANK_STATEMENTS                               VIEW
    CEFG_BANK_STATEMENT_LINES                          VIEW
    CEFG_CASH_FORECAST_CELLS                           VIEW
    CST_LAYER_ACTUAL_COST_DTLS_V                       VIEW
    FA_PROCESS_IMPAIRMENT_PKG                          PACKAGE BODY
    FA_SORP_IMPAIRMENT_PVT                             PACKAGE BODY
    FA_SORP_UPG_PKG                                    PACKAGE BODY
    FFP50296_01122012                                  PACKAGE BODY
    FFP50298_06042010                                  PACKAGE BODY
    FFP50300_06042009                                  PACKAGE BODY
    FFP50300_06042010                                  PACKAGE BODY
    FFP50300_06042011                                  PACKAGE BODY
    FFP50300_06042012                                  PACKAGE BODY
    FFP50302_06042010                                  PACKAGE BODY
    FFP50303_06042009                                  PACKAGE BODY
    FFP50303_06042010                                  PACKAGE BODY
    FFP50303_06042011                                  PACKAGE BODY
    FFP50303_06042012                                  PACKAGE BODY
    FFP52400_01010001                                  PACKAGE BODY
    FFP52402_01010001                                  PACKAGE BODY
    FFP52403_01010001                                  PACKAGE BODY
    FFP52468_01010001                                  PACKAGE BODY
    FFP52472_01010001                                  PACKAGE BODY
    FFP52474_01010001                                  PACKAGE BODY
    FFP52474_06042011                                  PACKAGE BODY
    FFP52503_06042012                                  PACKAGE BODY
    FFP52505_01010001                                  PACKAGE BODY
    FFP52506_06042012                                  PACKAGE BODY
    FFP52688_01010001                                  PACKAGE BODY
    FPA_AW_PCLASS_INV_MIX_V                            VIEW
    FPA_AW_PROJ_INV_RANK_MAPS_V                        VIEW
    FPA_AW_SCE_CONTEXT_V                               VIEW
    FPA_AW_SCE_EXCS_V                                  VIEW
    FPA_AW_SCE_SUM_CATS_V                              VIEW
    FPA_AW_SCE_SUM_PROJS_V                             VIEW
    FPA_AW_SCE_SUM_SCES_V                              VIEW
    FPA_MAIN_PROCESS_PVT                               PACKAGE BODY
    FPA_PLANNINGCYCLE_PVT                              PACKAGE BODY
    FPA_PORTFOLIO_PROJECT_SETS_PVT                     PACKAGE BODY
    FPA_PROJECT_PVT                                    PACKAGE BODY
    FPA_SCENARIO_PVT                                   PACKAGE BODY
    FPA_VALIDATION_PROCESS_PVT                         PACKAGE BODY
    GLBG_ACTUAL_BALANCES                               VIEW
    GLBG_ACTUAL_JOURNAL_BATCHES                        VIEW
    GLBG_ACTUAL_JOURNAL_ENTRIES                        VIEW
    GLBG_BUDGET_BALANCES                               VIEW
    GLBG_BUDGET_JOURNAL_BATCHES                        VIEW
    GLBG_BUDGET_JOURNAL_ENTRIES                        VIEW
    GLBG_ENCUMBRANCE_BALANCES                          VIEW
    GLBG_ENCUMB_JOURNAL_BATCHES                        VIEW
    GLBG_ENCUMB_JOURNAL_ENTRIES                        VIEW
    GLBG_GL_AVERAGE_BALANCES                           VIEW
    GLBG_GL_BUDGETS                                    VIEW
    GLBG_GL_BUDGET_ASSIGNMENTS                         VIEW
    GLBG_GL_BUDGET_ORGANIZATIONS                       VIEW
    GLBG_GL_STANDARD_BALANCES                          VIEW
    GLBG_JOURNAL_BATCHES                               VIEW
    GLBG_JOURNAL_ENTRIES                               VIEW
    GLBG_JOURNAL_LINES                                 VIEW
    GLFG_ACTUAL_BALANCES                               VIEW
    GLFG_ACTUAL_JOURNAL_BATCHES                        VIEW
    GLFG_ACTUAL_JOURNAL_ENTRIES                        VIEW
    GLFG_BUDGET_BALANCES                               VIEW
    GLFG_BUDGET_JOURNAL_BATCHES                        VIEW
    GLFG_BUDGET_JOURNAL_ENTRIES                        VIEW
    GLFG_ENCUMBRANCE_BALANCES                          VIEW
    GLFG_ENCUMB_JOURNAL_BATCHES                        VIEW
    GLFG_ENCUMB_JOURNAL_ENTRIES                        VIEW
    GLFG_GL_AVERAGE_BALANCES                           VIEW
    GLFG_GL_BUDGETS                                    VIEW
    GLFG_GL_BUDGET_ASSIGNMENTS                         VIEW
    GLFG_GL_BUDGET_ORGANIZATIONS                       VIEW
    GLFG_GL_STANDARD_BALANCES                          VIEW
    GLFG_JOURNAL_BATCHES                               VIEW
    GLFG_JOURNAL_ENTRIES                               VIEW
    GLFG_JOURNAL_LINES                                 VIEW
    HR_ASSIGNMENT_BK1                                  PACKAGE BODY
    HR_ASSIGNMENT_BK2                                  PACKAGE BODY
    HR_EMPLOYEE_BK1                                    PACKAGE BODY
    HR_PERSON_ADDRESS_BK3                              PACKAGE BODY
    HR_PERSON_BK1                                      PACKAGE BODY
    OKS_CCENCRYPTION_PKG                               PACKAGE BODY
    OTFG_ENROLLED_EVENTS                               VIEW
    OTFG_EXT_TRAINING_EVENT_ENROLS                     VIEW
    OTFG_FINANCE_HEADERS                               VIEW
    PAY_CA_RL1_AMEND_MAG                               PACKAGE BODY
    PAY_GB_HIST_ARCH_PKG                               PACKAGE BODY
    PAY_GB_PAYE_SYNC                                   PACKAGE BODY
    PAY_GB_REPORT_FUNCTION_PKG                         PACKAGE BODY
    PAY_GB_RTI_UPD                                     PACKAGE BODY
    PAY_IE_HIST_ARCH_PKG                               PACKAGE BODY
    PAY_IE_PAYFILE_SEPA                                PACKAGE
    PAY_IE_PAYFILE_SEPA                                PACKAGE BODY
    PAY_JP_DEF_REPORT_PKG                              PACKAGE
    PAY_JP_DEF_REPORT_PKG                              PACKAGE BODY
    PAY_JP_ITWB_ARCHIVE_PKG                            PACKAGE BODY
    PAY_JP_ITWB_REPORT_PKG                             PACKAGE BODY
    PAY_KR_YEA20090101_PKG                             PACKAGE BODY
    PAY_KR_YEA20100101_PKG                             PACKAGE BODY
    PAY_KR_YEA20110101_PKG                             PACKAGE BODY
    PAY_MX_SUBSIDY_EMP_PD_RPT                          PACKAGE BODY
    PAY_SA_HIST_ARCH_PKG                               PACKAGE BODY
    PERCONTACTRELATIONSHI_204I_DYT                     TRIGGER
    PERCONTACTRELATIONSHI_205U_DYT                     TRIGGER
    PER_SG_ORG_INFO_LEG_HOOK                           PACKAGE BODY
    PER_ZA_EE_DIFFERENTIAL_PKG                         PACKAGE BODY
    PER_ZA_EE_WORKFORCE_PROFILE                        PACKAGE BODY
    POBG_SUPPLIERS                                     VIEW
    POFG_SUPPLIERS                                     VIEW
    PSBBG_GL_ACCOUNT_HIERARCHIES                       VIEW
    PSBFG_GL_ACCOUNT_HIERARCHIES                       VIEW
    SSP_APAB_PKG                                       PACKAGE BODY
    SSP_APAD_PKG                                       PACKAGE BODY
    WMS_CARTNZN_PUB                                    PACKAGE BODY

  • Question about upgrading R12

    Dear all,
    My customer wants to upgrade EBS from 12.1.1 to 12.1.3.
    He has questions about module OTL and AGIS.
    He wants to know:
    1. Apply OTL&AGIS on 12.1.1, then upgrade to 12.1.3
    2. Upgrade 12.1.3, finish all post upgrade of 12.1.3, then apply patch to add OTL&AGIS module
    Which one should be correct?
    If neither of them, please advise.
    Also, please post the note/doc number.
    Thanks in adv,
    Jackie

    Jackie Han wrote:
    Dear all,
    My customer wants to upgrade EBS from 12.1.1 to 12.1.3.
    He has questions about module OTL and AGIS.
    He wants to know:
    1. Apply OTL&AGIS on 12.1.1, then upgrade to 12.1.3
    2. Upgrade 12.1.3, finish all post upgrade of 12.1.3, then apply patch to add OTL&AGIS module
    Which one should be correct?
    If neither of them, please advise.
    Also, please post the note/doc number.
    Thanks in adv,
    JackieUpgrade to 12.1.3 then apply the latest patchsets.
    Thanks,
    Hussein

  • Upgrade R12.1.1 to R12.1.3

    Hi all,
    before starting upgrade process I was download some patch
    9239089
    9239090
    9817770
    9966055
    9239095
    I starting upgrade my Oracle EBS release 12.1.1 to 12.13 on OL6.4 Operating system. now i already apply patch 9239090 after patch 9239089
    I check the log file, last process is..
    STOP_TASK: [Run SQL scripts and EXEC commands] [] [Fri Jan 24 2014 00:05:02]
    STRT_TASK: [Compile invalid objects in DB] [] [Fri Jan 24 2014 00:05:02]
    Compiling invalid objects...
    STRT_TASK: [Run ST parallel compile (APPS)] [] [Fri Jan 24 2014 00:05:02]
    sqlplus -s APPS/***** @/u01/oracle/prod/apps/apps_st/appl/ad/12.0.0/sql/adutlrcmp.sql APPLSYS ***** APPS ***** ***** 16  0 NONE FALSE
    Connected.
    Arguments are:
    AOL_schema = APPLSYS, AOL_password = *****,
    Schema_to_compile = APPS, Schema_to_compile_pw = *****,
    SYSTEM_password = *****, Total_workers = 16, Logical_worker_num = 0
    Object_type_to_not_compile = NONE
    Use_stored_dependencies = FALSE
    Connected.
    Running utl_recomp.recomp_parallel(16), if it exists
    OWNER                   NUM_INVALID
    APPLSYSPUB                 2
    PUBLIC                      2102
    CTXSYS                     2
    SYSTEM                     1
    APPS                     84736
    ICX                     1
    6 rows selected.
    Elapsed: 00:00:06.27
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:00.18
    STATUS_MESSAGE
    Running UTL_RECOMP.RECOMP_PARALLEL...
    process has been running for 14 hours but nothing prompt process result. what on that process is hang or crash? how to check it ?
    can u give me suggest ??
    Thanks
    Aries

    Hi Aries,
    Please run following query as apps user:
    select count(*) from user_objects
    where status='INVALID';
    You can monitor how many objects left to compile with the above query. In order to re-run the query issue command "/" in sql prompt and you can have a track on the process.
    Thanks &
    Best Regards,
    Asif

  • EBS upgrade from 11i to R12 using Maintenance Wizard question

    I have installed Maintenance Wizard in development envrionment. I picked module to upgrade 11i to R12. When I am defining the node it not only picked up 11i nodes but required me to configure R12 nodes. So Do I have to to create upgrade file system(for R12) and then configured R12 nodes in Define nodes? My configuration is in In configuration at this time as I did not configured R12 nodes.
    Please help me resolve this issue.

    My question is which database oracle_home we have to consider to upgrade R12? and What about another one oracle_home?
    When you run Rapid Install, provide the details of the already upgraded/installed 11.2.0.3 ORACLE_HOME.
    For 11gR1 ORACLE_HOME which is installed by Rapid Install, please see (How to upgrade Oracle E-Business Suite from 11i to 12.1.1 and keep the existing 10g Database? (Doc ID 1345020.1)).
    Thanks,
    Hussein

Maybe you are looking for

  • Mail has crashed and won't open at all

    My MAC Mail App has crashed and refuses to open. I have tried force quitting, and rebooting but no avail. It crashed while I was trying to delete an overly large draft file (140 MB). It's crashed when my attachments got too large before. But now I ca

  • Black SOD after Vista Updates on Satellite A205-S5804

    I have a Satellite A205-S5804 laptop running Vista Home Premium. It ran fine until an automatic update (about a month ago). Then I got the Black Screen Of Death during bootup (somewhere after the Vista starts to load but prior to the user logon). Too

  • Wifi Locking in but nothing happening

    First off I love the Itouch! Second I am just a little frustrated because I cannot seem to get the wifi to work in my itouch away from my home. I lock into a wifi hotspot yet I cannot get my weather apps or stock apps updated. I get full bars and I h

  • Install Qt3 next to Qt4 for compiling moto4lin?

    Hello, I tried to install moto4lin and p2kmoto to connect my old Motorola V3i to my computer. p2kmoto runs now but moto4lin fails because qapplication.h is missing:    main.cpp:21:26: fatal error: qapplication.h: No such file or directory      #inclu

  • Using adobe reader on 64 bits OS

    We have a WinForms.NET application which runs on DOT NET Framework 4.0. In this application we have few reports that are loaded using PDF Viewer. In places where we use PDF viewer, we use AxInterop.AcroPdfLib and InteropPdfLib Libraries to load the r