How to check version after i apply pacth - Printable Version +- Oracle Forum - The Knowledge Center for Oracle Professionals - Looking Beyond the Possibilities (http://www.oraerp.com) +-- Forum: Oracle Applications (http://www.oraerp.com/forum-39.html) +--- Forum: Oracle E-Business Suite (EBS) (http://www.oraerp.com/forum-1.html) +---- Forum: Oracle EBS R11i, R12.1, R12.2 Installation, Administration (http://www.oraerp.com/forum-5.html) +---- Thread: How to check version after i apply pacth (/thread-55.html) |
How to check version after i apply pacth - Sara Khan - 12-08-2010 I'm going to apply patch with the ID# 9355677 - R12.1.2 UNABLE TO SAVE THE TAX CLASSIFICATION FOR A SUPPLIER TYPE EMPLOYEE my question is in the readme file there is a portion that i need to check the version of the following file $JAVA_TOP/oracle/apps/zx/schema/server/PartyTaxProfileEOImpl.class 120.17.12010000.4 $ZX_TOP/patch/115/sql/zxcptytaxprfileb.pls 120.9.12010000.4 $ZX_TOP/patch/115/sql/zxcptytaxprfiles.pls 120.3.12010000.2 how do I know the version? do i need to execute command so that i can able to check version? RE: How to check version after i apply pacth - Kashif Manzoor - 12-08-2010 (12-08-2010, 04:07 PM)Sara Khan Wrote: I'm going to apply patch with the ID# 9355677 - R12.1.2 UNABLE TO SAVE THE TAX CLASSIFICATION FOR A SUPPLIER TYPE EMPLOYEE Use the strings command or adident to get the version and use the class file instead of the java file, thus: $ strings -a <file name> | grep Header adident Header <File Name> This will give the version. |