Is there a way I could run a given Report without evoking the Reports Background Engine??
I have added this line to my PARAMLIST but still it is not working:
Add_Parameter(pl_id, 'ORACLE_SHUTDOWN', TEXT_PARAMETER, 'YES');
in this code :
declare
repid report_object;
v_rep varchar2(100);
tend_code varchar2(100);
pl_id paramList;
begin
pl_id := get_parameter_list('report_params');
if not id_null(pl_id) then
Destroy_Parameter_List( pl_id );
end if;
pl_id := Create_Parameter_List('report_params');
Add_Parameter(pl_id, 'PARAMFORM', TEXT_PARAMETER, 'No');
Add_Parameter(pl_id, 'ORACLE_SHUTDOWN', TEXT_PARAMETER, 'YES');
Add_Parameter(pl_id, 'tend_code', text_parameter, :db_tenders_list.tend_id);
run_product(REPORTS , 'letter_test2.RDF', SYNCHRONOUS, RUNTIME, FILESYSTEM, pl_id, Null);
end;
............but it is still not working.
Kriss
I have added this line to my PARAMLIST but still it is not working:
Add_Parameter(pl_id, 'ORACLE_SHUTDOWN', TEXT_PARAMETER, 'YES');
in this code :
declare
repid report_object;
v_rep varchar2(100);
tend_code varchar2(100);
pl_id paramList;
begin
pl_id := get_parameter_list('report_params');
if not id_null(pl_id) then
Destroy_Parameter_List( pl_id );
end if;
pl_id := Create_Parameter_List('report_params');
Add_Parameter(pl_id, 'PARAMFORM', TEXT_PARAMETER, 'No');
Add_Parameter(pl_id, 'ORACLE_SHUTDOWN', TEXT_PARAMETER, 'YES');
Add_Parameter(pl_id, 'tend_code', text_parameter, :db_tenders_list.tend_id);
run_product(REPORTS , 'letter_test2.RDF', SYNCHRONOUS, RUNTIME, FILESYSTEM, pl_id, Null);
end;
............but it is still not working.
Kriss