Sports

https://www.espncricinfo.com/ci/engine/match/scores/desktop.html
Showing posts with label How to check Oracle Database version. Show all posts
Showing posts with label How to check Oracle Database version. Show all posts
Tuesday, August 12, 2014

How to Check Application Version in Oracle Apps R12

sql query to find file version in oracle apps

how to check database version in oracle

Join the newsletter

Subscribe to get our latest content by email.
You can use adident after setting APPS<SID>.env variable in ERP R12 or 11i

adident Header <file name>

Example :

You can give the whole directory path and run this as
[oracle@test server]$ adident Header $JAVA_TOP/oracle/apps/pos/supplier/webui/ByrMngSitesCO.class

$Header ByrMngSitesCO.java 120.22.12010000.8 2009/11/20 19:13:22 atjen ship $

or goto $JAVA_TOP/oracle/apps/pos/supplier/webui directory and type

[oracle@test server]$ cd $JAVA_TOP/oracle/apps/pos/supplier/webui
[oracle@test webui]$ adident Header ByrMngSitesCO.class
ByrMngSitesCO.class:
$Header ByrMngSitesCO.java 120.22.12010000.8 2009/11/20 19:13:22 atjen ship $

The alternate Linux command strings -a and it will return the same result for you

strings -a ByrMngSitesCO.class | grep '$Header'
N$Header: ByrMngSitesCO.java 120.22.12010000.8 2009/11/20 19:13:22 atjen ship $

I hope this helps you understand these two important commands

Thanks in advance,

Muhammad Kamran Saeed

Popular