|
Re: how to pass Record grps to reports???? [message #79844 is a reply to message #79840] |
Thu, 18 July 2002 01:05 |
subbu
Messages: 27 Registered: July 2002
|
Junior Member |
|
|
Hi ,
To pass a record grp to a report first u have to create a report containing all the columns that u r passing though the record group.
Then in the form call the report using run_product.
Before that, when u add the parameter to the parameter list use DATAPARMETER instead of TEXTPARAMETER.like this
add_parameter('parameter_id','XXXX',DATA_PARAMETER,'YYYY');
Here "XXXX" -- should be same as the name of the query in the report builder.
and "YYYY" --- should be the name of ur record group.
|
|
|