Step by Step Instructions on R12.2.0 upgrade to R12.2.3

Hi All,
I just went through an 12.2.3 upgrade and had my documentation done while upgrading. Therefore thought of sharing the upgrade procedure and possible issues you may encounter and how you could avoid them.
Enviornment Details:
                Operating System: OEL 5.10 64bit
                Fresh Installation of R12.2.0 
                02 Node Installation (DB and Apps)
                Each Node with 7.5 GB RAM
                Platform: Virtualization (Via Oracle Virtual Box)
1. Backup up your existing R12.2.0 Instance.
2. Shutdown Application, Database and Database listener.
3. Download the below Consolidated List of Patches and Technology Bug Fixes for Database 11.2.0.3 and apply all patches (Reference Note: 1594274.1):
13001379
16924879
16929165
16992075
17047617
17184721
17461865
17468141
17502060 (Check Note 2)
17875948
NOTE 1: During some of the database patches being applied you may get the following warning:
“/u01/finsys/db/tech_st/11.2.0/precomp/lib/env_precomp.mk:2160: warning: ignoring old commands for target `pcscfg.cfg'
/u01/finsys/db/tech_st/11.2.0/precomp/lib/ins_precomp.mk:19: warning: overriding commands for target `pcscfg.cfg'
/u01/finsys/db/tech_st/11.2.0/precomp/lib/env_precomp.mk:2160: warning: ignoring old commands for target `pcscfg.cfg'”
You may disregard the warning, and the respective patches are applied successfully (Reference Note: 1448337.1).
NOTE 2: If the opatch fails, ensure that patch 16819180 and 14832335 are not applied. In order to check you may use command:
opatch lsinventory | grep 16819180
opatch lsinventory | grep 14832335
In my case I had patch 14832335 already applied, hence used the following command to remove:
opatch rollback -id 14832335
4. Download and Copy the Following application patches to “$PATCH_TOP” directory. That is as “/u01/finsys/fs_ne/EBSapps/patch/” in my case.
17204589 (Consolidated Seed Table Upgrade Patch)
17023760 (R12.AD.C.DELTA.3 Patch)
17021789 (R12.TXK.C.DELTA.3 Patch)
17020683 (E-Business Suite Release 12.2.3 Patch)
17020685 (Oracle E-Business Suite Release 12.2.3 Online Help Patch)
5. Apply the Consolidated Seed Table upgrade patch 17204589
Start Database Listener and the Database
Start the Weblogic Server:
sh $ADMIN_SCRIPTS_HOME/adadminsrvctl.sh start
Apply patch 17204589 on hotpatch mode:
adop phase=apply patches=17204589 hotpatch=yes
6. Apply AD/TXK Patches
Find the version of the adgrants.sql available in the patch 17023760.
Find the version of the adgrants.sql that is in $APPL_TOP/admin
                  You may use command:
strings -a adgrants.sql | grep '$Header'
Out of the two, Copy the latest adgrants.sql script to the Database server
mkdir $ORACLE_HOME/appsutil/admin
scp adgrants.sql oracle@<DB_NODE>:/u01/finsys/db/tech_st/11.2.0/appsutil/admin
Source the DB environment and run the adgrants.sql that you have copied to the DB Server:
sqlplus /nolog @$ORACLE_HOME/appsutil/admin/adgrants.sql apps
Apply patch 17023760, 17021789  using hotpatch mode:
adop phase=apply patches=17023760 hotpatch=yes
adop phase=apply patches=17021789 hotpatch=yes
7. Instantiate the Oracle HTTP Server configuration files admin.conf, ssl.conf, mod_wl_ohs.conf on Run File System.
$ADJVAPRG oracle.apps.ad.autoconfig.InstantiateFile -e $CONTEXT_FILE -d $FND_TOP/admin/driver/ohstmpl.drv -tmpl $FND_TOP/admin/template/ssl_conf_FMW.tmp
$ADJVAPRG oracle.apps.ad.autoconfig.InstantiateFile -e $CONTEXT_FILE -d $FND_TOP/admin/driver/ohstmpl.drv -tmpl $FND_TOP/admin/template/mod_wl_ohs_conf_FMW.tmp
$ADJVAPRG oracle.apps.ad.autoconfig.InstantiateFile -e $CONTEXT_FILE -d $FND_TOP/admin/driver/ohstmpl.drv -tmpl $FND_TOP/admin/template/admin_conf_FMW.tmp
perl $FND_TOP/patch/115/bin/txkSetAppsConf.pl -contextfile=$CONTEXT_FILE -outfile=$INST_TOP/logs/appl/rgf/TXK/test.log
8. Startup EBS Application Services.
      sh $ADMIN_SCRIPTS_HOME/adstrtall.sh
9. Synchronize the patch file system
     adop phase=fs_clone
10. Apply R12.2.3 Suite-Wide Release pack.
Start an online patching cycle
          adop phase=prepare
Apply the R12.2.3 patchset (Please check notes and do the needful prior in avoid possible errors during upgrade):
          adop phase=apply patches=17020683,17020685
NOTE 1:You may come across tablespace sizing error.
AutoPatch error:
ORA-01653: unable to extend table APPLSYS.AD_FILES by 16 in tablespace APPS_TS_TX_DATA
ORA-06512: at "APPS.AD_FILE_UTIL", line 1379
ORA-06512: at line 1
Solution:
Either resize an existing datafile or create a new datafile for tablespace APPS_TS_TX_DATA. I personally prefer to have new datafile created for any custom datafile adding on, so I created a new datafile.
Alter tablespace
add datafile ‘/u01/finsys/db/apps_st/data/a_txn_data05.dbf’
size 1g;
Alter database
datafile ‘/u01/finsys/db/apps_st/data/a_txn_data05.dbf’
autoextend on maxsize 5g;
After increasing the datafile size, when tried to restart the patching process, I get the following error message:
The worker should not have status 'Running' or 'Restarted'
To resolve this check the current worker status using adctrl:
- Source the Patch Edition of Apps Environment file (You will not be able to run the adctrl using the Running edition of Apps Environment during an active patching cycle).
- Start the adctrl and Execute option 4, 5 and 6 sequentially on the problematic worker.
- Restart the patching process again.
          adop phase=apply patches=17020683,17020685 restart=yes
11. Instantiate the Oracle HTTP Server configuration files admin.conf, ssl.conf, mod_wl_ohs.conf on Run File System.
Source Patch Edition Apps Environment file.
. $PATCH_BASE/EBSapps/appl/APPS$CONTEXT_NAME.env
Perform instantiation.
Please refer the command used above in Step No. 7
12. Complete the online patching cycle
adop phase=finalize
adop phase=cutover
adop phase=cleanup
adop phase=fs_clone
Note Referenced:
Oracle E-Business Suite Release 12.2.3 Readme (Doc ID 1586214.1)
Applying the 12.2.3 AD and TXK Release Update Pack (Doc ID 1586217.1)
Oracle E-Business Suite Release 12.2: Consolidated List of Patches and Technology Bug Fixes (Doc ID 1594274.1)
Opatch warning: overriding commands for target xxxx (Doc ID 1448337.1)
Oracle E-Business Suite Release 12.2 Information Center - Upgrade (Doc ID 1583158.1)
Let me know if there are any concerns on this. Hope this will be of help to someone. Happy Upgrading
Thanks &
Best Regards,
Asif

Hi,
Hussein Sawwan-Oracle, Thanks for your input. Your effort too helped a lot in having this post here, thanks a lot
Anar Godjaev, Thanks brother, for your kind words!!!
Best Regards,
Asif

Similar Messages

  • Invalid objects found after R12.1.2 upgrade from R12.1.1

    Hi all,
    We had Oracle E-Business R12.1.1 vanilla installation before and just upgraded to R12.1.2 by applying patch (7303033), in which during this process there was an error stating some errors found at forms library.
    And the below query;
    select count(*) from dba_objects where owner ='APPS and status = 'INVALID''; --gave us 84 objects.
    Due to this we ran a recompilation of the apps schema and Application database entire using the "adadmin" command, after which the above query has fallen down the output to "48" counts from "84" counts.
    Basically the instalallation and upgrade has been done by the vendor of Oracle product to us and have no metalink account as yet ( which will be provided to us after the go live date).
    I just want to know will this effect our production enviornment and if so how could I rectify it...
    Thanks in advance for your assistance.
    Regards,
    Edited by: A.R.M Asif on Jul 6, 2010 11:40 PM

    Pl also see this related thread - Re: Many  db  objects error after Upgrate EBS 12.1.1 to EBS 12.1.2(7303033)
    HTH
    Srini

  • Step by Step Instructions for Installing Self Signed Certificate using Certificate Modification Tool

    I am looking for some step by step instructions for installing the self signed certificate from my Microsoft SBS 2003 server on a Treo 755p and 750p.  In particular I need some help with the form of the actual certificate and how to use the Certificate Modification tool. 
    Some questions I have are as follows:
    1. When I install the certificate on a Windows Mobile device I used an exported version of the certificate.  This export is done using the DER x.509 format.  Is that the same form I’ll need for the Palm?  Do I need some other form? Can/should I just use sbscert.cer file that is generated when SBS is configured?
    2. Does the self signed cert need to be installed on the computer being used to update the Palm or do we just need to be able to access the appropriate .CER file?
    3. There are three things included in the PalmCertificatesTool.zip file:
                                    Trusted CAs (folder)
                                    Cert2pdb.exe
                                    PalmCertificates.exe
       How do I use these tools?
    4. It looks like the PalmCertificates.exe file opens an interface that will allow me to browse to the desired .CER file.  Then I suppose I use the < Generate PDB > to create something that needs to then be uploaded to the Palm device?  Not having any real experience with a Palm device how do I upload and install this file? 
    5. Once uploaded do I do something on the device to install it?
    If there is some white paper that provides step by step instructions on doing this that would be great.
    Thanks,
    Walt Bell
    Post relates to: Treo 755p (Verizon)
    Post relates to: Treo 755p (Verizon)

    Thanks for that.
    I have one question after reading the article 43375:
    The article has you "Turn of AutoSync" and then "Reset the device".  It then indicates the device should be left idle. 
    The next step relates to running the PalmCertificates.exe, navigate to the certificate file and add it and then run the < Generate PDB > button.  Should the device be connected to the computer during this process? If so, at what point after the reset do you connect it to the computer?
    Thanks!
    Post relates to: Treo 755p (Verizon)

  • I have an iPhone application already developed and it works great ,now i need to make that same application for my iPad .can someone please tell me step by step instructions on how to make it .

    i have an iPhone application already developed and it works great ,now i need to make that same application for my iPad .can someone please tell me step by step instructions on how to make it .

    Try the developer's forum:
    https://discussions.apple.com/community/developer_forums

  • How do I sync my new ipad mini with my old ipad 2, without losing any apps or data in notes?  I need step by step instructions for first-time sync with ipad mini.  Thanks.

    How do I sync my new ipad mini with my old ipad 2, without losing any apps or data in notes?  I need step by step instructions for first-time sync with ipad mini.  Thanks.

    If you synced it many times, you have to have a backup. It's just a question of how old that backup is now. When did you last sync?
    First of all launch iTunes on your computer and go to Edit>Preferences>Devices. Do you see any backups for you iPad in that window? If so, how new is the newest backup? That will be the backup that you will want to use. But remember that if you use that backup and it is one month old, you can only restore from that date back in time. Anything that you did on the iPad in the past month will not be in that backup.
    Turn on the new iPad Minin and start activating OTA via WiFi. You will get to a certain point in the process where you will be given the choice to Set up as new, Restore from iCloud - or Restore from iTunes. You will want to select Restore from iTunes.
    That is the short and sweet version. There are step by step instructions in this article. This applies to the mini as well as the iPad 4 or the iPad 3 for that matter.
    http://www.everythingicafe.com/how-to-set-up-new-ipad/2012/03/16/

  • How can I install my husbands iPod/library on the same computer that I have my iPod/library on? Can someone send me the step by step instructions? I was a windows computer. Thanks!

    So we just got a new computer and I was able to successfully add my iPod/library to it. However when I tried to add my husbands iPod/library to the computer his library didn't show up. He is ony able to charge his iPod but cannot see his library. I tried adding another account/admin to my computer and download itunes with his ipod that way but it said there was another library and it couldn't access his library song list. His ipod is showing up on the left side however when I click on it there is nothing displaying. So my question to you or what I am trying to figure out is how can I get his ipod to show up with his library if he plugs in his ipod? Do I need to create a new account and if so how do I do it? I have a windows computer. Can someone give me step by step instructions on how to do this? He is going crazy not being able to access anything.
    Thanks!

    Try these 2 User Tips...
    Syncing to a New Computer...
    https://discussions.apple.com/docs/DOC-3141
    Recovering your iTunes library from your iPod or iOS device
    https://discussions.apple.com/docs/DOC-3991

  • How do I separate my music from my husbands to just go on my ipod shuffle?I know I need to manually pull the songs over...please help I need step by step instructions

    Need step by step instructions on how to separate my music from my husbands that I purchased on Itunes.I know my account is listed to set up manually...I just forget how to do it.I know I need to drag each song over right???Please advise

    Your i-device was not designed for unique storage of your media. It is not a backup device and media transfer was planned with you maintaining a master copy of your media on a computer which is itself independently backed up against loss. To use a device with a new computer you transfer the content from the old computer (or its backup) directly to the new computer, not the device to the new computer. Syncing is one way, computer to device, updating the device content to the content on the computer, not updating or restoring content on a computer. The exception is iTunes Store purchases which can be transferred to a computer. iTunes Store: Transferring purchases from your iOS device or iPod to a computer - http://support.apple.com/kb/HT1848 - only purchases from iTunes Store For transferring other items from an i-device to a computer you will have to use third party commercial software. See this document by turingtest2: Recovering your iTunes library from your iPod or iOS device - https://discussions.apple.com/docs/DOC-3991

  • HT4972 I have an Ipod touch version 4.2.1 and the instructions do not detail how to update to iOS 5. Can you help with me step by step instructions.

    I have an Ipod touch version 4.2.1 and the instructions do not detail how to update to iOS 5. Can you help me with step by step instructions.

    iOS 4.2.1 suggests that you may have 2nd generation Touch, which cannot be updated past iOS 4.2.1
    Check http://support.apple.com/kb/HT1353  for help in identifying your model. A quicker method may be to check the back casing. If your iPod has Model No.A 1288 etched into it, then it's a 2nd gen Touch. 
    Assuming that you are using the latest version of iTunes (today, that is 10.6.3), to check if your iPod can be updated, connect it to your iTunes and look on the Device/Summary pane. Select Check for Updates. If there is one, you will see a message telling you that and how to install it. However, if you see a message saying that your iPod is up-to-date, then it cannot be updated.

  • Please help me with the step by step instructions on how to install a Windows server 2008 on a computer that has Windows 8 installed on it

    Please help me with the step by step instructions on how to install a Windows server 2008 on a computer that has Windows 8 installed on it without formatting windows 8.Please email the steps , Thanks

    Please help me with the step by step instructions on how to install a Windows server 2008 on a computer that has Windows 8 installed on it without formatting windows 8.Please email the steps , Thanks
    Assuming your rig can support virtual machines, you can use Hyper-V and run another OS there.
    Better practice however is to use a dedicated machine and use remote desktop to the server.
    Corsair Carbide 300R with window
    Corsair TX850V2 70A@12V
    Asus M5A99FX PRO R2.0 CFX/SLI
    AMD Phenom II 965 C3 Black Edition @ 4.0 GHz
    G.SKILL RipjawsX DDR3-2133 8 GB
    EVGA GTX 6600 Ti FTW Signature 2(Gk104 Kepler)
    Asus PA238QR IPS LED HDMI DP 1080p
    ST2000DM001 & Windows 8.1 Enterprise x64
    Microsoft Wireless Desktop 2000
    Wacom Bamboo CHT470M
    Place your rig specifics into your signature like I have, makes it 100x easier to understand!
    Hardcore Games Legendary is the Only Way to Play!

  • Step by step instructions to create a Simple PCUI Application

    I am very new to PCUI and have been trying to get a simple application up and running for the last few days. There always seems to be some problem or the other. At times it gives a dump, at times it gives me a screen without the search request or search result area and when i get all of these done, my application just does not invoke the Query method.
    I would appreciate it if you could give me Step by Step instructions to create a simple PCUI application to search for some data from an existing database table and display it.
    Thanks in advance!!!

    Hi Mithun
    You can also download the PCUI Cookbook from:
    http://service.sap.com/instguides -> my SAP Business Suite Solutions -> my SAP CRM -> my SAP 2005. The title is PCUI Book for CRM 2005.
    The direct link is (which may change so I recommend that you follow the menu path) https://websmp209.sap-ag.de/~sapidb/011000358700001093962006E/PCUIBook50_06.pdf
    Refer the following weblog
    /people/vijaya.kumar/blog/2005/06/10/people-centric-user-interface-pcui--getting-started
    Hope this will help
    Regards,
    Rekha Dadwal
    <b>You gain a point for every point that you reward. So reward helpful answers generously</b>

  • Step by step instructions

    Hello experts,
    Wondering if anyone can provide me with a step by step instructions on how to go about creating something in VC and display it on the portal?  I am looking to take some queries from SAP BI 7.0 and display them on the portal.  I heard that VC would be a great tool to do this.  I was asked to look into something like this but never been exposed to this product before.  Any help would be greatly appreciated.
    Thanks in advance,
    David

    Hi,
    Integrate SAP NetWeaver 7.0 BI Application UI Elementsand Visual Composer UI Elements by   service-enabling UI Elements
    Refer the Below Article .
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/50b65a5d-f397-2910-a78a-f5544f21c33b
    Points Are Welcome.
    Thanks,
    SubbaRao Chinta

  • Step by step instructions to wipe clean and reinstall

    Hello. I am hoping somewhere on here, there will be someone who can direct me to step-by-step instructions to wipe clean and reinstall operating system.
    iMac g4 (the dome model, which I still love). 7 years old. 10.2 operating system. It has been crashing repeatedly and I paid for diagnostics, they propose wiping clean and reinstalling, and I really need to do this myself and not pay for it.
    Pretty please, I hope you can direct me. Thanks!
    Amy

    Amy,
    Before going the *nuke route*, please post who did the diagnostics. Was it a "Genius" at an Apple Retail Store or a third party Mac Reseller?
    What is the condition of the RAM (total)..... how much free space on the Hard Drive .... at what point in time did it start to crash ..... did it start after downloading some software .... have you tried Repairing Permissions .... do you run a maintenance Utility like Macaroni to clean up the OSX .... have you tried to run Repair Disk (HD) using the original Install disc of Jaguar .... did you ever update to the latest version of 10.2.8 ...... are you trying to access websites that do not support Jag?
    As they use to say in Dragnet ....... "just give us the facts".
    DIXIE

  • I need step by step instructions for backing up tiger to external hard drive. I don't have time machine..HELP!

    I am trying to upgrade to Snow Leopard but need to backup before upgrading. How do I backup os x 10.4 tiger on Mac pro  to an external hard drive. Does any one have step by step instruction?

    It would help to know where you are in the processs.  Do you already have a drive?
    Cloning And Backup Tools
    A bootable clone is an exact copy of your drive which is capable of booting your computer.  Making a copy of your computer which is capable of actually starting the computer requires special copying procedures which simply dragging files in Finder won't achieve. Some people just back up data files but if you have problems you have to reinstall all your operating system and all your applications. With a bootable clone you just start up from the backup drive and clone back everything.
    To clone one hard drive to another hard drive you can use:
    [CarbonCopy Cloner|http://www.bombich.com/software/ccc.html] (donationware)
    [SuperDuper|http://www.shirt-pocket.com/SuperDuper/SuperDuperDescription.html] (shareware)
    [IBackup|http://www.grapefruit.ch/iBackup/index.html] (free)
    The Restore function of Disk Utility included in OS X. [Kappy's directions|http://discussions.apple.com/message.jspa?messageID=8799711#8799711]
    [Tri-Backup (commercial)|http://www.tri-edre.com/english/tribackup.html] (payware)
    [Silverkeeper|http://www.lacie.com/silverkeeper/] (free) - version 2 has some issues (references: [here|http://www.macintouch.com/readerreports/backup/index.html#d12jan2009], and [here|http://www.macintouch.com/readerreports/backup/index.html#d13jan2009]) and it is recommended Tiger users stick with 1.1.4.
    [Kappy's Backup Software Recommendations|http://discussions.apple.com/message.jspa?messageID=9065665#9065665]
    [Overview of Mac OS X Backup Programs|http://8help.osu.edu/1247.html]

  • How do I convert from PDF to Word step by step instructions needed..am practically computer illiterate

    How do I convert from PDF to Word step by step instructions needed..am practically computer illiterate@

    Ok, fine. That isn't Acrobat, and that's why our instructions weren't much use. (But it's worth saying "I didn't have that option" rather than "it's not converting", we could end up wasting a lot of your time with the wrong stuff!)
    Anyway, the free Adobe Reader can't do this conversion without a subscription called either ExportPDF or PDF Pack. You may have had one in the past. Are you still paying for one?

  • Need step by step instructions to configure SOAP sender adapter.

    Hell Friends
    I am new to SOAP Adapter scenario and am looking for some instructions that will guide me thro' step by step instructions.
    The scenario is that I am getting data from outside world and want to use a SOAP adapter and send it to XI. From XI I want to use RFC adapter and a ZBAPI to insert the data in a table.
    I have already written ZBAPI and it is working well when I use File Adapter as sender instead of SOAP.
    Now I want to do the same above scenario by just changing File to SOAP adapter.
    I tried the steps from
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/d23cbe11-0d01-0010-5287-873a22024f79
    But there are lots of assumptions done and the instructions are not 100 percent complete.
    If anyone has made a notes of it and can email me, i would appreciate it.
    My email address is [email protected]
    Thanks
    Ram

    Hi,
    This  might help you
    Web Services error message ! !??
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/40728f7b-0401-0010-d9bc-8c73884a3789
    Regards
    Sangeetha

Maybe you are looking for

  • Converting a chinese string to UTF-8

    Hello There, In my java application i am supporting more than one language like Chinese, German, English,etc... I am using eclipse tool to develop my project. My problem is i am keeping some Chinese characters like as follows String[]     timeschines

  • Ovi Maps, Internal Memory / Memeory cards question

    My new memory card arrives in a day or two and until it does I have not been downloading much on my phone but I have been using Ovi Maps.  When maps starts I get the little popup about not finding external memory so it uses the internal memory and I

  • URL truncation error

    Dear All, We have completed the technical upgrade for our BW systems. We are now doing the functional upgrade. We are now migrating our report Object to the new JAVA Runtime. We are using the old 3.5 Role menu item and have enhanced this with note 10

  • Quick question on screen blank

    deleted Last edited by Misbah (2012-02-14 04:58:08)

  • Hot code replacement

    How do I do hot code replacement in Eclipse? I tried to write another line while debugging the code, but I got the warning message about the obsolete methods in stack.