|
Re: how to close report background engine from forms6 [message #84115 is a reply to message #83963] |
Fri, 30 January 2004 18:36  |
Abhay Kumar
Messages: 13 Registered: May 2003
|
Junior Member |
|
|
I think, this code can solve your problem
declare
pl_id paramlist;
begin
if not id_null(get_parameter_list ('PARAM_NAME')) then
destroy_parameter_list('PARAM_NAME');
end if;
pl_id := create_parameter_list('PARAM_NAME');
Add_Parameter (pl_id,'ORACLE_SHUTDOWN',TEXT_PARAMETER,'YES');
run_product(reports, 'ReportName', synchronous, runtime, filesystem, PL_ID, null);
END;
|
|
|