Oracle Forms 6i and Reports 6i
110 pts.
0
Q:
Oracle Forms 6i and Reports 6i
i get an error message when i call a report6i from a form6i, plz tell me the whole code with description, and plz also send me an ebook related to form6i and report 6i
ASKED: Jun 12 2009  6:30 AM GMT
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
0
25 pts.
0
A:
 RATE THIS ANSWER
0
Click to Vote:
  •   0
  •  0
  • AddThis Social Bookmark Button
You did not mention the error message you received. Enhance your question...

Try the following code to run a report from FORMS 6i.
DECLARE
plist PARAMLIST;
BEGIN
Run_Product(REPORTS,'YOUR REPORT NAME WITH PATH',ASYNCHRONOUS, RUNTIME,FILESYSTEM, plist, NULL);
END;

Regards
Rashid Shah
Last Answered: Jun 13 2009  6:27 AM GMT by 5112069   25 pts.
0
0
Discuss This Answer:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _



_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

Carlosdl   29845 pts.  |   Jun 12 2009  1:27PM GMT

Please, post your code and the exact error message you are getting. Those are important pieces of information when asking for help.

The official help which you can access from Forms and Reports includes examples on calling reports also.

 
0