Home » Developer & Programmer » Forms » maximizing Report
maximizing Report [message #84584] Thu, 01 April 2004 02:24 Go to next message
Hasan Imam
Messages: 13
Registered: April 2004
Junior Member
how to maximize Reports in runtime?
Re: maximizing Report [message #84611 is a reply to message #84584] Mon, 05 April 2004 19:39 Go to previous message
Riaz
Messages: 112
Registered: February 2002
Senior Member
use the following code with when-button-pressed trigger. It opens and maximize a report from within forms 6i.

declare
cr_param paramlist;
reportname varchar2(30);
begin
reportname:='awardlist';

cr_param := create_parameter_list('CREATEP');
add_parameter(cr_param,'MAXIMIZE',text_parameter, 'YES');
RUN_PRODUCT(REPORTS,'c:final'||reportname, ASYNCHRONOUS,RUNTIME,FILESYSTEM,CR_PARAM,NULL);
destroy_parameter_list(cr_param);
end;

HTH..
Riaz
Previous Topic: HP OpenView Web Launcher and Oracle Forms
Next Topic: Registry access thru d2k
Goto Forum:
  


Current Time: Mon May 06 16:00:12 CDT 2024