Can't launch reports6i using RUN_PRODUCT
321077Aug 3 2006 — edited Sep 27 2007Hi all,
/*Environment*/
Forms6i 6.0.8.26.0
Reports6i 6.0.8.26.0
Windows 2003 x64 R2
Client/Server
/*---------------*/
I'm using the run_product buit_in to call my reports from forms, but i'm blocked in the reports background engine and my reports never show up. I can't figure out what 's going wrong.
When i run my reports with rwrun60.exe it show ok.
here is my code to launch within forms:
Declare
pl_id paramlist;
BEgin
pl_id:=create_parameter_list('dummy2');
add_parameter(pl_id,'ORACLE_SHUTDOWN',TEXT_PARAMETER,'Yes');
run_product(REPORTS,'my_report.rep',SYNCHRONOUS,RUNTIME,FILESYSTEM,pl_id,Null);
DESTROY_PARAMETER_List('dummy2');
END;
Any help will be greatly appreciated!
Thx