We are facing an error when Attempting to launch forms in oracle application R12.
Issue:
FRM-92101 : There was a failure in the Forms Server during startup.
This could happen due to invalid configuration. Please look into the web-server log file for details.
Details...
Java Exception:
oracle.forms.net.ConnectionException: Forms session <3> failed during startup: no response from runtime process
at oracle.forms.net.ConnectionException.CreateConnectionException(Unknown Source)
Cause:
The forms executable was not relinked successfully. The "failed during startup: no response from runtime process" error message occurs when first trying to initialize the forms process versus actually performing a forms function.
The most common cause for the failed relink is that the file "ldflags" in $ORACLE_HOME/lib32 is missing or pointing to an incorrect location.
Fix:
Step 1:
$ cd $ORACLE_HOME/lib32
$ rm ldflags
$ ln -s $ORACLE_HOME/lib/ldflags ldflags
Step 2:
Stop the web tier services (adopmnctl.sh stop) and relink the form executable.
$ cd $ORACLE_HOME/forms/lib32/
$ make -f ins_forms.mk install
Step 3:
Start the web tier services (adiopmnctl.sh start) and launch the forms.
Ref. (Doc ID 454427.1)
Issue:
FRM-92101 : There was a failure in the Forms Server during startup.
This could happen due to invalid configuration. Please look into the web-server log file for details.
Details...
Java Exception:
oracle.forms.net.ConnectionException: Forms session <3> failed during startup: no response from runtime process
at oracle.forms.net.ConnectionException.CreateConnectionException(Unknown Source)
Cause:
The forms executable was not relinked successfully. The "failed during startup: no response from runtime process" error message occurs when first trying to initialize the forms process versus actually performing a forms function.
The most common cause for the failed relink is that the file "ldflags" in $ORACLE_HOME/lib32 is missing or pointing to an incorrect location.
Fix:
Step 1:
$ cd $ORACLE_HOME/lib32
$ rm ldflags
$ ln -s $ORACLE_HOME/lib/ldflags ldflags
Step 2:
Stop the web tier services (adopmnctl.sh stop) and relink the form executable.
$ cd $ORACLE_HOME/forms/lib32/
$ make -f ins_forms.mk install
Step 3:
Start the web tier services (adiopmnctl.sh start) and launch the forms.
Ref. (Doc ID 454427.1)
No comments:
Post a Comment