If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > Oracle > Oracle Reports

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 08-03-04, 18:07
oraforum oraforum is offline
Registered User
 
Join Date: Jul 2004
Posts: 2
Oracle Reports

Hi,
I would like to know how to run an Oracle Report from Oracle forms 9i.I tried to use RUN_REPORT_OBJECT but its giving me errors could any one give me the correct syntax and the procedure as how to run the report from oracle forms 9i.
Please reply to me.

Thanks
Oraforum
Reply With Quote
  #2 (permalink)  
Old 08-03-04, 19:06
anacedent anacedent is offline
Registered User
 
Join Date: Aug 2003
Location: Where the Surf Meets the Turf @Del Mar, CA
Posts: 7,092
>its giving me errors
Stop & think.
We (TINW) are NOT minders.
Do you realize how many HUNDREDS of different errors there are?
Each different error requires a different solution.
Form 9i is less than helpful.
What's the actual version number out to four digits?
EXACTLY & COMPLETELY how are you trying to invoke Reports 9i?
__________________
You can lead some folks to knowledge, but you can not make them think.
The average person thinks he's above average!
For most folks, they don't know, what they don't know.
Reply With Quote
  #3 (permalink)  
Old 09-07-04, 02:29
da!sy da!sy is offline
Registered User
 
Join Date: Jul 2004
Posts: 30
Exclamation

hi,
I'm also having errors in calling a report using the following code:


Code:
DECLARE
	RID REPORT_OBJECT;
	RNAME VARCHAR2(100);
BEGIN
	:SYSTEM.MESSAGE_LEVEL := 5;
	RID := FIND_REPORT_OBJECT('cakes');
	RNAME := RUN_REPORT_OBJECT(RID);
	:SYSTEM.MESSAGE_LEVEL := 0;
END;
I'm now at a different computer which has no Oracle package downloaded, so the errors were shown in 2 alert boxes, first says that the run_report_object couldn't be called, and the second telling something about 1 argument (sorry for my embeguice errorsm this is what I could remember)
considering that I had called a report before from the same computer.

thnks
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On