Ripplestone
Ripplestone
Report Management Made Easy!

Updating the Page Size in the Parameters List

By - Brenda
24.05.13 03:03 PM

With the new version of the Crystal Reports Runtime Engine there is page size limit that determines how many parameter values are in each page of values.  The default is 200 values per page or batch.

Below is an example of a report that has 2100 parameters.  The parameters are broken up into 11 pages of values.  The first page has the first 200 parameter values and as you move through the pages you get the next 200 values.

image

 

This page size can be changed in Ripplestone by updating the web.config file located in C:\Sites\Ripplestone\web.config (this is an XML file that can be updated with a text editor).

Look for a section called <businessObjects> and add or change the line highlighted below.  In the example the value is set to 500, but this can be any value.

  <businessObjects>
<crystalReports>
<crystalReportViewer>
<add key="documentView" value="printlayout" />
<add key="EnableTextClipping" value="true" />
<add key="maxNumberListOfValues" value="500" />
</crystalReportViewer>
</crystalReports>
</businessObjects>


 



After the config file has been changed to allow 500 values per page, there are only 5 pages of values.



image


Brenda