Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> opening maximized reports3 from forms5

opening maximized reports3 from forms5

From: Mohammad Shuja <shuja_at_technologist.com>
Date: Sat, 06 May 2000 02:17:29 -0700
Message-Id: <10489.105132@fatcity.com>


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

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US