Friday, September 28, 2012

Versions of components in Oracle Apps

How to find versions of oracle components associated with Oracle Apps in Windows Environment
Many times we find ourselves in a situation where we just couldnt get the steps to ascertain the versions of components associated with our instance, be it on Unix/Windows. I had listed the steps below to ascertain the version for each component. All the steps can be used in both Unix/Windows environment , except for Developer6i version. We also have a shell script which will give all this information in a table format which was not tested till now on a Windows environment. If interested put a comment, we will write the script in a post.
Database
Connect as apps user;
. Alternatively you can also execute
Select * from v$version;


Apps Version

Connect as apps user
select release_name from apps.fnd_product_Groups;


Apache/iAS Version

%IAS_ORACLE_HOME%\Apache\Apache\apache.exe -version


Developer 6i PatchSet

cd %ORACLE_HOME% (806 Oracle Home)
cd bin
Ifrun60.exe help=yAbove command will pop-up a window simillar to this

Forms PatchSet WindowThumbrule : Subtract the fourth integer by 9 to get the patchset level.
Ie., 6.0.8.24.1
Fourth integer => 24
Dev6i PS => 24-9 = 15


Discoverer 4i Version

cd %APPL_TOP%\admin
grep -I s_disco_ver_comma **xml


Jinitiator Version

cd %APPL_TOP%\admin
grep -i s_jinit_ver_dot **xml


JDK/Java Version

java -version


OJSP Version

cd %OA_HTML%
echo “<%= application.getAttribute(“oracle.jsp.versionNumber”) %>” > test.jspLaunch Browser and enter urlhttp://.:port/OA_HTML/test.jsp


JDBC Version

http://.:port/OA_HTML/jsp/fnd/aoljtest.jspLook for String ” JDBC driver version” under Connection String


OA Framework Version

Option 1http://.:port/OA_HTML/OAInfo.jspOption 2adident Header %FND_TOP%/html/OA.jsp
adident Header %OA_HTML%/OA.jsp
Note: OA.jsp should be of the same version in both the places


AD PatchSet Level

Connect as apps user
select patch_level from fnd_product_installations where patch_level like ‘%AD%’;Note: above sql can be used to identify any modules patchset level by replacing AD with the module name eg., BNE


Portal Version

select fnd_oracle_schema.getouvalue(‘PORTAL’) from dual;FND_ORACLE_SCHEMA.GETOUVALUE(‘PORTAL’)
——————————————————————————–
PORTAL30 <= to retrieve the portal userselect version from PORTAL30.wwc_version$; VERSION
——————————————————————————–
3.0.9.8.1


No comments:

Post a Comment