Calling reports9i from Forms9i-REP-0305 error [message #83951] |
Thu, 08 January 2004 20:37 |
Neela Thakkar
Messages: 2 Registered: January 2004
|
Junior Member |
|
|
I get the following error when i call a report from a "when button pressed trigger" :
REP-0305 : u have not specifeied the report name.
I have already created a report from the" report" module of the object navigator in the form. My trigger contains the following commands :
declare
repid report_object;
repname varchar2(100);
begin
repname := 'report4'
repid := run_report_object(repname);
|
|
|
|
|
|
|
Re: Calling reports9i from Forms9i-REP-0305 error [message #84300 is a reply to message #84297] |
Thu, 26 February 2004 18:51 |
Kapil
Messages: 145 Registered: May 2002
|
Senior Member |
|
|
"can u tell where i can get the name of the report server from???"
U can run the following command on DOS prompt to create your own Reort Server--
rwserver -install <server_name> [[batch=yes/no]] [[autostart=yes/no]]
Here server_name will be your server name.
Or, if you'r using an application server that already has a Report Server installed you can get it's name from list of Services running on your AS.
|
|
|