Blog dedicated to Oracle Applications (E-Business Suite) Technology; covers Apps Architecture, Administration and third party bolt-ons to Apps

Thursday, July 19, 2007

How To Check Developer Forms Patch Set Level

Metalink Note 283985.1 gives a unix shell script which returns the Forms patchset level

1.Login though applmgr account

2.Create a file fpslevel.shcat > fpslevel.shcopy the following contents in fpslevel.sh file.

#!/bin/sh###############################################################fpslevel.sh - Used to find out the forms patchset level###############################################################
clear
PatchLevel=0
f60gen > /dev/null 2>&1
if [ $? -eq 127 ]
then
echo "Environment is not Set"
else
PatchLevel=`f60gen grep '(Form Compiler)' grep -v Release awk -F. '{print $5}' `

echo 'Forms Patchset Level :' ` expr $PatchLevel - 9 `
fi
echo 'For More Information '
echo 'Refer to Metalink Note:232313.1 for More Information'
.
3.Grant the execute permission to the script
chmod 777 fpslevel.sh

4.Execute the script.
./fpslevel.sh

1 comment:

Anonymous said...

Vikram,
did u do oracle ebs 11.5.1.10.2 just oracle database 10.2 to 11g ?