TracBrowser: R_12_2_6_Upgrade.txt

File R_12_2_6_Upgrade.txt, 8.6 KB (added by anonymous, 6 years ago)

lpuio

Line 
1Oracle E-Business Suite Release 12.2.6 Readme (Doc ID 2114016.1)
2
3Section 6: Apply the Latest AD and TXK Delta Release Update Packs
4Applying the Latest AD and TXK Release Update Packs to Oracle E-Business Suite Release 12.2 (Doc ID 1617461.1)
5
6        Section 2: Apply Required Database Patches and Update Database Initialization Parameters— Done
7        Section 3: Apply the R12.AD.C.Delta.9 and R12.TXK.C.Delta.9 Release Update Packs
8        3.1 Path A — Upgrade and New Installation Customers
9        New Installation Customers
10       
11        Weblogic PSU — Running
12        Footnote 1 - This is the 10.3.6.0.161018 PSU. When applying a PSU all conflicting patches (including overlays and previous PSUs) would need to be removed. For a list of bug fixes included in this PSU, refer to My Oracle Support Knowledge Document 2194102.1, Oracle WebLogic Server Patch Set Update 10.3.6.0.161018 Fixed Bugs List.
13
1413729611 (see Footnote 2)       Z9PC    13729611
1517319481 (see Footnote 2)       9KCT    17319481
1619259028 (see Footnote 2)       
17KRDE
18
1919259028
2019687084 (see Footnote 2)       NJVF    19687084
2122323006        DI8E    22323006
2223743997 (see Footnote 1)       K25M    23743997 — PSU (running)
2324608998 (see Footnote 2)       QMJP    13337000, 21562338
24
25Known Issue Installing Oracle WebLogic Server Patches
26
27When using the bsu.sh (or bsu.cmd on Microsoft Windows) script to install an Oracle WebLogic Server patch, you may receive an out of memory error for either "GC overhead limit" or "Java heap space". In such a case, run the commands shown below.
28
29Source the Oracle E-Business Suite Release 12.2 environment
30Change directory to $FMW_HOME/utils/bsu
31Back up the existing copy of bsu.sh (or bsu.cmd on Microsoft Windows)
32$ cp bsu.sh bsu.sh_backup
33Open bsu.sh (or bsu.cmd on Microsoft Windows) in a text editor such as vi and change the line:
34MEM_ARGS="-Xms256m -Xmx512m"
35on UNIX to:
36MEM_ARGS="-Xms512m -Xmx1024m -XX:+UseParallelGC"
37on Microsoft Windows to:
38set MEM_ARGS=-Xms512m -Xmx1024m -XX:+UseParallelGC
39Save the modified bsu.sh (or bsu.cmd on Microsoft Windows) file and exit the editor
40Run the patch installation procedure again.
41
42
43After you have run ETCC as applicable, proceed to the installation steps below.
44
45        3.1.2 Run Installation Steps
46        . <RUN_BASE>/EBSapps/appl/APPS<CONTEXT_NAME>.env
47        sh $ADMIN_SCRIPTS_HOME/adadminsrvctl.sh start
48        Unzip patches and run adgrants.
49        unzip Patch 25178222 (R12.AD.C.Delta.9)
50        unzip Patch 25180736 (R12.TXK.C.Delta.9)
51        Execute adgrants by following the instructions in the readme of Patch 25178222 (R12.AD.C.Delta.9).—
52        Note - Do not merge Patch 25178222 with any other patches.
53On the run edition application tier file system, apply Patch 25178222 (R12.AD.C.Delta.9) in hotpatch mode.
54        adop phase=apply patches=25178222 hotpatch=yes
55        § ou should periodically check this Document 1617461.1 on My Oracle Support for updates.
56
574.1 Critical AD Patches
58
59All Customers
60
61Patch 25250923:R12.AD.C
62Patch 24481010:R12.AD.C
63Patch 25615812:R12.AD.C
64
654.2 Critical TXK Patches
66
67Patch 25874936:R12.TXK.C
68Patch 25983583:R12.TXK.C
69Patch 25994411:R12.TXK.C
70Patch 26182372:R12.TXK.C
71
72apply any applicable AD patches as a comma-separated list of patches.
73adop phase=apply patches= 25250923,24481010,25615812 hotpatch=yes merge=yes
74
75use hotpatch mode to apply Patch 25180736 (R12.TXK.C.Delta.9) (plus any additional critical patches – see note box).
76adop phase=apply patches=25180736,25874936,25983583,25994411,26182372 hotpatch=yes merge=yes
77
78Section 5: Update Database Tier to Latest Code
79
80On the application tier (as the APPLMGR user):
81. <EBS_ROOT>/EBSapps.env run
82perl <AD_TOP>/bin/admkappsutil.pl
83
84On the database tier (as the ORACLE user):
85. ./<RDBMS ORACLE_HOME>/<CONTEXT_NAME>.env
86Copy or FTP the appsutil.zip file to <RDBMS ORACLE_HOME>.
87cd <ORACLE_HOME>
88unzip -o appsutil.zip
89$ sh <RDBMS_ORACLE_HOME>/appsutil/scripts/<CONTEXT_NAME>/adautocfg.sh
90
91Run AutoConfig on the run file system.
92Run AutoConfig on all application tier nodes (as the APPLMGR user) by executing the applicable command:
93 sh <INST_TOP>/admin/scripts/adautocfg.sh
94
95
96
97Section 7: Perform Pre-Update Steps (Conditional)
98
99Customer Relationship Management tasks:
100Oracle Mobile Field Service customers: (Document 2188514.1)
101Drop user mobileadmin cascade;
102
103
104Supply Chain Management tasks:
105Oracle Install Base (Document 1681308.1)
106SELECT DISTINCT sub_type_id
107FROM csi_txn_sub_types
108WHERE ib_txn_type_code ='WBADI';
109
110R12.2.x customers currently having sub_type_id = 10357, 102 and txn_type_code = WBADI in csi_ib_txn_types and csi_source_ib_types tables should apply the following datafix to correct Installed Base Transaction SubTypes data
111
1121. Delete sub_type_id = 10357 record for ib_txn_type_code = 'WBADI' using the following script:
113
114select to_char(csit.creation_date,'DD-MON-YYYY')
115from  csi_ib_txn_types citt ,csi_source_ib_types csit
116where csit.sub_type_id = citt.sub_type_id
117and citt.sub_type_id = 10357
118and citt.ib_txn_type_code = 'WBADI';
119
120delete from csi_ib_txn_types
121where sub_type_id = 10357
122and ib_txn_type_code = 'WBADI';
123
124delete from csi_source_ib_types
125where sub_type_id in (select sub_type_id from csi_ib_txn_types where sub_type_id = 10357 and ib_txn_type_code = 'WBADI' );
126
127commit;
1282. Delete newly created seeded Transaction SubTypes through csitxnst.ldt with sub_type_id > 10000 using the following script:
129
130delete from csi_ib_txn_types
131where to_char(creation_date,'DD-MON-YYYY') = <Date from above query1>
132and seeded_flag = 'Y'
133and sub_type_id > 10000;
134
135delete from csi_source_ib_types
136where to_char(creation_date,'DD-MON-YYYY') = <Date from above query1>
137and seeded_flag = 'Y'
138and sub_type_id > 10000;
139
140commit;
1413. If user-defined Transaction SubTypes were created before applying a patch that provides the bad version of csitxnst.ldt, there are chances to corrupt these existing sub types data. The following needs to be done:
142
143    a. Compare user_defined Transaction SubTypes data on patched and non-patched environments. Run the following SQLs on both environments and compare output to identify the differences:
144
145select * from csi_ib_txn_types
146where seeded_flag = 'N';
147
148select * from csi_source_ib_types
149where seeded_flag = 'N';
150   b. If there is any data corruption, then log a Service Request and provide output of the SQLs in step 3-a to get a datafix for the corrupted data from Oracle Installed Base Development.
151
152
153
154Oracle Landed Cost Management
155
156If you have a lower version of the file(s) than the one below and have done customization, create a back-up of your file(s) under a location outside both APPL_TOPs or under $APPL_TOP_NE/../log.
157
158Package Name    File Version
159INL_CUSTOM_PUB  INLPCUSB.pls
160120.6.12020000.7
161
162INLPCUSS.pls
163120.5.12020000.6
164After applying the Oracle E-Business Suite 12.2.6 Release Update Pack, redo the customization in the new version of the specification and the body. For more information, refer to My Oracle Support Knowledge Document 1211843.1, How to Proceed for Customizing LCM Hooks INLPCUSB.pls.
165
166
167Oracle Warehouse Management
168
169If you have a lower version of the file(s) listed below or you have performed customizations on any of these packages, create a back-up of your file(s) under $APPL_TOP_NE/.
170
171Package Name    File Version
172WMS_LABEL_CUSTOM_PKG    WMSLACPB.pls
173120.0.12020000.3
174
175WMSLACPS.pls
176120.1.12020000.5
177WMS_XDOCK_CUSTOM_APIS_PUB       WMSXDCAS.pls
178120.2.12020000.5
179
180WMSXDCAB.pls
181120.1.12020000.3
182WMS_RE_Custom_PUB       WMSPPPUS.pls
183120.6.12020000.4
184
185WMSPPPUB.pls
186120.5.12020000.2
187After applying the Oracle E-Business Suite 12.2.6 Release Update Pack, redo the customization in the new version of the specification and the body.
188
189
190Section 8: Apply Oracle E-Business Suite 12.2.6 Release Update Pack
191
1928.1 Path A — Upgrade and New Installation Customers upgrading to Oracle E-Business Suite 12.2.6 Release Update Pack
193
194Source the run edition applications environment.
195
196$ . <INSTALL_BASE>/EBSapps.env run
197
198Stop the Oracle Weblogic Admin Server and Node Manager services.
199
200Applying the patch in downtime mode requires all application tier services to be down. Therefore, Weblogic AdminServer and Node Manager that were started previously when applying the latest Release Update Packs for AD and TXK for Release 12.2 need to be shut down.
201
202Stop the Oracle Weblogic Admin Server on the run file system.
203
204$ sh $ADMIN_SCRIPTS_HOME/adadminsrvctl.sh stop
205
206Stop the Node Manager service on the run file system.
207
208$ sh $ADMIN_SCRIPTS_HOME/adnodemgrctl.sh stop
209
210
211Apply Oracle E-Business Suite 12.2.6 Release Update Pack Patch 21900901 on the run edition application environment, using downtime mode.
212
213$ adop phase=apply apply_mode=downtime patches=21900901
214
215Start all application tier services on the run file system.
216
217$ sh $ADMIN_SCRIPTS_HOME/adstrtal.sh
218
219Perform adop cleanup action.
220
221adop phase=cleanup
222
223Synchronize file systems
224
225adop phase=fs_clone
226
227
228
229Section 9: Post-Update Steps
230
231Apply Oracle E-Business Suite Release 12.2.6 Online Help
232
233dop phase=apply patches=21900918 hotpatch=yes