run product - report not running [message #161014] |
Wed, 01 March 2006 07:28 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
kamran.it
Messages: 265 Registered: September 2005 Location: Karachi
|
Senior Member |
|
|
I create a form and write Run_product .....
but report is not running. report backgroung engine starts but report dont run. in the other hand when i run report in Oracle report it runs.
|
|
|
|
Re: run product - report not running [message #162553 is a reply to message #161509] |
Sat, 11 March 2006 02:53 ![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) |
amolnk
Messages: 9 Registered: March 2006 Location: India
|
Junior Member |
|
|
try this,
DECLARE
pl_id ParamList;
BEGIN
pl_id := Get_Parameter_List('plist');
IF NOT Id_Null(pl_id) THEN
Destroy_Parameter_List( pl_id );
END IF;
pl_id := Create_Parameter_List('plist');
Add_Parameter(pl_id, 'PARAMFORM', TEXT_PARAMETER, 'NO');
Run_Product(REPORTS, 'c:\report1.RDF', SYNCHRONOUS, RUNTIME, FILESYSTEM, pl_id, NULL);
end;
|
|
|
|
|