FRM-92101: There was a failure in the Forms Server during startup.This [message #293400] |
Sat, 12 January 2008 03:08 |
chandra_1973
Messages: 2 Registered: January 2008 Location: Hyderbad/london
|
Junior Member |
|
|
HI,
HI to everyone, we are currently working oracle apps 12i custom
module, our forms and reports are done completely in Forms/Reports
database 10g. we are trying to run the reports using forms in apps(why
it has got another history). cut the story short we are calling
reports from Forms and we will call the forms in apps
the following code which i have used in 'WHEN-BUTTON-PRESSD'
---------------------------------------------------------------
message('report START.');
DECLARE
repid REPORT_OBJECT;
v_rep VARCHAR2(100);
rep_status varchar2(20);
rep_url varchar2(2000);
BEGIN
repid := find_report_object('EMP');
message('report FOUND');
v_rep := RUN_REPORT_OBJECT(repid);
message('Run Report Object just FIRED');
rep_status := REPORT_OBJECT_STATUS(v_rep);
if rep_status = 'FINISHED' then
message('Report Completed');
else
message('Error when running report.');
end if;
END;
-------------------------------------------------
FRM-92101: There was a failure in the Forms Server during startup.
This could happen due to Invalid Configuration
Please look in to the web-server log-file for details.
Details..
Java Exception:
oracle.forms.net.ConnectionException: Forms session <1> aborted:
unable to communicate with runtime process.
at oracle.forms.net.ConnectionException.createConnectionException(Unknown
Source)
at oracle.forms.net.HTTPNStream.getResponse(Unknown Source)
at oracle.forms.net.HTTPNStream.doFlush(Unknown Source)
at oracle.forms.net.HTTPNStream.flush(Unknown Source)
at java.io.DataOutputStream.flush(Unknown Source)
at oracle.forms.net.StreamMessageWriter.run(Unknown Source)
Thanks..in advance, your help is much appreicated
CS
|
|
|