Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> opening maximized reports3 from forms5
Hello there,
How can i open the reports from forms5 in maximized window. I passed a parameter maximize with its value yes in the run_product built-in, but it does nothing. It works fine when used in the command-line reports3 runtime.
I wrote this on a button in form:
DECLARE
PL_ID PARAMLIST;
BEGIN
pl_id := Get_Parameter_List('tmpdata');
IF NOT Id_Null(pl_id) THEN
Destroy_Parameter_List( pl_id );
END IF;
pl_id := Create_Parameter_List('tmpdata');
ADD_PARAMETER (PL_ID, 'MAXIMIZE', TEXT_PARAMETER, 'YES');
Run_Product(REPORTS, 'CLIENT_BAL1', SYNCHRONOUS,
RUNTIME, FILESYSTEM, PL_ID);
END;
thanks
Shuja
OCP - Application Developer
Received on Sat May 06 2000 - 04:17:29 CDT
![]() |
![]() |