Report in full screen [message #164034] |
Tue, 21 March 2006 07:16 |
manns
Messages: 59 Registered: March 2006 Location: Bangalore
|
Member |
|
|
hi,
in oracle6i
if i run d report from form or menu using run_product
it will open in default size but i want to open in full screen
how can i open this in full screen?
is it possible or not?
if possible pls mail me back
regards,
manju
|
|
|
|
Re: Report in full screen [message #164849 is a reply to message #164596] |
Mon, 27 March 2006 01:42 |
manns
Messages: 59 Registered: March 2006 Location: Bangalore
|
Member |
|
|
hi
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, 'PARAMFORM', TEXT_PARAMETER, 'NO');
Add_Parameter(pl_id, 'ORACLE_SHUTDOWN', TEXT_PARAMETER, 'YES');
Add_Parameter(pl_id, 'MAXIMIZE', TEXT_PARAMETER, 'YES');
Run_Product(REPORTS, 'c:\empreport.rdf', SYNCHRONOUS, RUNTIME, FILESYSTEM, pl_id, NULL);
END;
it will help to maximize the report
but will not maximize para meter form
how can i maximize my para form
regards,
manju
|
|
|
|