I want my report to open in Maximize Window. [message #117098] |
Mon, 25 April 2005 02:10 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
weekend79
Messages: 198 Registered: April 2005 Location: Islamabad
|
Senior Member |
![halfday_79%40yahoo.com](/forum/theme/orafaq/images/yahoo.png)
|
|
I open report from form with following codes:
DECLARE
repid REPORT_OBJECT;
v_rep VARCHAR2(100);
rep_status varchar2(20);
BEGIN
repid := find_report_object('Report_Name');
v_rep := RUN_REPORT_OBJECT(repid);
END;
But the report open in Restore Windows. I want my report to open in Maximize Window.
Please advise how.
Wishes
Jawad
|
|
|
Re: I want my report to open in Maximize Window. [message #117280 is a reply to message #117098] |
Tue, 26 April 2005 04:55 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
hsinghalmrt
Messages: 51 Registered: March 2005
|
Member |
|
|
you can use the code on button on form to run the report
DECLARE
pl_id ParamList;
BEGIN
pl_id := create_Parameter_List('tempdata');
Add_Parameter(pl_id, 'MAXIMIZE', TEXT_PARAMETER, 'YES');
Add_Parameter(pl_id, 'PARAMFORM', TEXT_PARAMETER, 'NO');
Add_Parameter(pl_id,'P_ename',TEXT_PARAMETER,:ename);
Run_Product(REPORTS, 'c:\HIMANSHU\emprep', SYNCHRONOUS, RUNTIME,FILESYSTEM, pl_id, NULL);
END;
Regds,
Himanshu
|
|
|
|