1.Login though applmgr account
2.Create a file fpslevel.sh
cat > fpslevel.sh
copy 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
Monday, February 9, 2009
Check Developer Forms Patch Set Level
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment