Friday, March 18, 2022

Weblogic, Fusion Middleware and Forms version in R12.2

ETCC script from patch 17537119 is the easiest way to find R12.2 component versions. But, there are other ways to do that. Two documents are useful to find the version of WebLogic and Fusion Middleware in R12.2:

. How To Find the Full WebLogic Server Version and Full Patch Level (Doc ID 1051959.1)
. How To Find The Version Of Oracle Fusion Middleware Used By E-Business Suite 12.2 (Doc ID 2073977.1)

1. WebLogic Server version (in R12.2.10)

$ . $FMW_HOME/wlserver_10.3/server/bin/setWLSEnv.sh
... ...
Your environment has been set.

$  java weblogic.version
WebLogic Server Temporary Patch for BUG13845626 Tue Jan 05 07:49:28 UTC 2021
WebLogic Server 10.3.6.0.210119 PSU Patch for BUG32052267 Mon Nov 23 07:28:31 UTC 2020
WebLogic Server Temporary Patch for BUG13964737 Fri Dec 20 11:32:08 IST 2013
WebLogic Server Temporary Patch for BUG20474010 Sun Mar 01 17:22:18 IST 2015
WebLogic Server Temporary Patch for ${CRS} Mon Jul 30 16:45:20 EDT 2012
WebLogic Server Temporary Patch for ${CRS} Mon Jul 30 16:45:20 EDT 2012
WebLogic Server 10.3.6.0  Tue Nov 15 08:52:36 PST 2011 1441050
Use 'weblogic.version -verbose' to get subsystem information
Use 'weblogic.utils.Versions' to get version information for all modules

$ which java
$COMMON_TOP/util/jdk64/jre/bin/java    <= WebLogic uses 64-bit Java
$ echo $ORACLE_HOME                        <= WebLogic may not use it !
$RUN_BASE/EBSapps/10.1.2

NOTES: script setDomainEnv.sh may do the same:
$ . $EBS_DOMAIN_HOME/bin/setDomainEnv.sh
$ java weblogic.version
... ...

$ echo $EBS_DOMAIN_HOME
$RUN_BASE/FMW_Home/user_projects/domains/EBS_domain

2. Fusion Middleware
Run ETCC script to find Fusion Middleware version, or check its opatch Inventory:

Fusion Middleware is in $IAS_ORACLE_HOME (or, $FMW_HOME/webtier)
$ echo $IAS_ORACLE_HOME
$ export ORACLE_HOME=$IAS_ORACLE_HOME
$ echo $ORACLE_HOME
$FMW_HOME/webtier              <= e.g. under .../fs1/FMW_Home folder

$ export PATH=$IAS_ORACLE_HOME/OPatch:$PATH
$ opatch lsinventory | more

Installed Top-level Products (1):

Oracle WebTier and Utilities CD                                      11.1.1.9.0
There are 1 products installed in this Oracle Home.

3. Forms and Reports version
Forms is in 10.1.2 Oracle home. Use below line to find its version:

$ echo $ORACLE_HOME
$RUN_BASE/EBSapps/10.1.2       <= e.g. under .../fs1/EBSapps folder
$ which java
$COMMON_TOP/util/jdk32/jre/bin/java   <= 32-bit Java

$ ${ORACLE_HOME}/bin/frmcmp_batch help=y |grep 'Forms 10.1 (Form Compiler) Version' |awk '{ print "Oracle Forms and Reports Product version : " $6 }'
Oracle Forms and Reports Product version : 10.1.2.3.0

One reference may help on other components:
How to Check Oracle Fusion Middleware 11g and WebLogic Component Versions? (Doc ID 1151602.1)

No comments: