Compiling Forms in 11i through Shell Script
Hi,
I am trying to compile Oracle 11i Forms through the following Shell Script:
if f60gen $XBOL_TOP/forms/US/<Form Name> <Login Details>
then
echo "Form Compiled Successfully."
else
echo "Error while compiling form "
echo "EGL-10005:Login id: $APPS_LOGIN_ID "
echo "$APPS_LOGIN_ID may be invalid."
echo "Please check and rerun"
echo "Aborted."
exit 1
fi
But, when it runs, it compiles the form, generate the fmx and goes into the else part also.
I am not able to figure out the error.
Can anyone help..?
if f60gen $XBOL_TOP/forms/US/<Form Name> <Login Details>
then
echo "Form Compiled Successfully."
else
echo "Error while compiling form "
echo "EGL-10005:Login id: $APPS_LOGIN_ID "
echo "$APPS_LOGIN_ID may be invalid."
echo "Please check and rerun"
echo "Aborted."
exit 1
fi
But, when it runs, it compiles the form, generate the fmx and goes into the else part also.
I am not able to figure out the error.
Can anyone help..?
0