Question

  Asked: Jun 18 2008   9:11 AM GMT
  Asked by: VND


How to call a report made in Reports 6i into a Forms 6i Form.


D2K 6i, Oracle Forms, Oracle Reports, Developer 2000

I need to call a Report made in Reports 6i into a Form made in Forms 6i.

Subscribe to Alerts! Get questions and answers delivered to your Inbox.


E-mail me updates on this question



   SUBSCRIBE

hidden modal window

Answer Wiki (Improve, edit or add to this answer)


 RATE THIS ANSWER
+1
Click to Vote:
  •   1
  •  0



WRITE THIS CODE "WHEN BUTTEN PRESS" ON YOUR FORM

DECLARE
PARAMID PARAMLIST;
BEGIN
PARAMID :=CREATE_PARAMETER_LIST('TEMP');
ADD_PARAMETER(PARAMID,'PARAMFORM',TEXT_PARAMETER,'NO');
ADD_PARAMETER(PARAMID,'****',TEXT_PARAMETER,:block197.****);
ADD_PARAMETER(PARAMID,'DESTYPE',TEXT_PARAMETER,'SCREEN');


RUN_PRODUCT(REPORTS,'C:\***\***.rep',SYNCHRONOUS,RUNTIME,
FILESYSTEM,PARAMID);

IF NOT(ID_NULL(PARAMID)) THEN
DESTROY_PARAMETER_LIST(PARAMID);
END IF;
END;
  • AddThis Social Bookmark Button

Browse more Questions and Answers on Oracle.

Looking for relevant Oracle Whitepapers? Visit the SearchOracle.com Research Library.


Discuss This Answer


You must be logged-in to discuss a question. Log-in/Register