|
|
Re: When I run the report through a form it shows the reports parameters form [message #89347 is a reply to message #89331] |
Thu, 12 February 2004 00:11 |
sathya
Messages: 27 Registered: December 2000
|
Junior Member |
|
|
I think u r passing parameters from forms to reports using parameter list...
then just suppress the parameter 'PARAMFORM'.
like this....
DECLARE
pl_id PARAMLIST;
BEGIN
pl_id := Get_Parameter_List ( 'att_plist' ) ;
IF NOT ID_NULL ( pl_id ) THEN
Destroy_Parameter_List ( pl_id ) ;
END IF;
pl_id := Create_Parameter_List('att_plist');
Add_Parameter ( pl_id,'PARAMFORM',TEXT_PARAMETER,'NO' ) ;
Run_Product(REPORTS,'QMSR109',SYNCHRONOUS,RUNTIME,FILESYSTEM,pl_id,NULL);
Destroy_Parameter_List ( pl_id ) ;
END;
the above procesure is a example for sending parameter by ceating a paramter list dynamically.
u can also add any no. of parameters.
|
|
|