ActiveReports Developer 7
Set a Hidden Parameter
See Also Support Forum
ActiveReports Developer 7 > ActiveReports Developer Guide > How To > Page Report How To > Add Parameters in a Page Report > Set a Hidden Parameter

Glossary Item Box

If you want to run a report without prompting the user for a value at runtime, you need to set a default value for each parameter. The report collects the required parameter value from the default value and uses it to generate the report.

Default values can be queried or non-queried. A non-queried default value can be a static value or an expression. A queried default value is a field value from a dataset.

Use the following instructions to create your own hidden parameters. These steps assume that you have added a page layout template to your report and have a data connection in place. See Adding an ActiveReport to a Project and Connect to a Data Source for further information. Also refer to Add a Dataset before reading this topic.

Note: This topic uses the DVDStock table in the Reels database. By default, in ActiveReports Developer, the Reels.mdb file is located at [User Documents folder]\ComponentOne Samples\ActiveReports Developer 7\Data folder.
  1. In the Report Explorer, right-click the Parameters node and select Add Parameter.
  2. In the Report - Parameters dialog that appears, add a parameter named StorePrice with an Integer data type. Click the checkbox next to Hidden to hide the parameter UI at runtime.
  3. On the Default Values tab, select Non-queried and click the Add(+) icon to add an empty expression for the value.
    Note: When you use From query to provide a default value, only the first returned row value is used as the default value.
  4. In the Value field enter 5 and click OK to close the Report - Parameters dialog.
    Note: When adding multiple default values, in the Report - Parameters dialog, General tab, check the Multivalue check box, otherwise the report collects only the first default value from the list and uses it to generate the report.
  5. In the Report Explorer, right-click Data Source (DataSource1 by default) node and select Add Data Set to create a dataset.
  6. In the DataSet Dialog that appears, on the Parameters page, click the Add(+) icon to add an empty expression for the parameter.
  7. In the Name field, enter the same parameter name (StorePrice) you had added in the steps above and set its value to:
    =Parameters!StorePrice.Value
  8. On the Query page of the DataSet Dialog, use the following SQL query to fetch data from the DvDStock table.
    SELECT * FROM DvDStock WHERE StorePrice IN (?).
  9. From the Visual Studio toolbox, drag and drop a Table data region (or any other data region) onto the design surface, and from the Report Explorer, drag the Title, StorePrice and In Stock fields onto the table details row.
  10. Click the Preview Tab to view the result.

Notice that the report collects the required parameter value from the default value (i.e. 5) and uses it to display the list of Movie DVDs with Store Price $5.


See Also

Concepts
Parameters

©2014. ComponentOne, a division of GrapeCity. All rights reserved.