I'm fairly new to Crystal reports and use Crystal Reports 2008 for our reporting needs.

We've a requirement where data from a single source needs to be presented in the report in 3 different ways.

So, the way I designed it, to have 3 different sub-reports with data source set to the same procedure from the DB and a container report which holds these sub reports. Based on the user selection to view the report individually or grouped I suppress/not suppress the sub reports in the container report.

The reports works perfectly as per the requirement with the current design. But I'm troubled by the performance of the report when the user selects to see all the 3 presentation modes together i.e. when all the 3 sub-reports are called. The obvious reason is the same data fetched from the DB by the sub-reports individually instead of a one time fetch and reuse across the sub-reports. I thought there should be a way the dataset from a source can be shared between the sub-reports without need to hitting the db again. But I'm yet to find a way to do that in Crystal Reports. Is there a way we can implement this obviously for performance benefit?

Notes:

1) I chose the design of 3 separate sub-reports to present the same data because the requirement wants it modular. But I'm aware, it's usually not recommended to use sub-reports when the data used is same.

2) The presentation of data in each sub report is fairly complex. Each sub report uses at least 4 to 5 group sections and they're not the same across the sub reports. So basically I don't know of a way to implement the different presentations with multiple group sections in a single report without using sub-reports to work around this performance problem.

3) I've pretty much optimized everything in the DB procedure and it's not the pain point.

I was looking around using Google and I assume from what I understood, I'm looking for a functionality like Data regions from SSRS in Crystal Reports. I may be wrong with this as I don't know SSRS and didn't understood Data regions from what I read.

So to summarize, does Crystal Reports support a functionality which I imagine like say, fetch the data from the DB in the main container report and pass/use it across the sub-reports without hitting the DB again?

link|improve this question

80% accept rate
feedback

1 Answer

Subreports bind to the datasource just like the main report. Data from the main report are usually passed as parameters. As far as I am aware no data caching occurs in the binding process. If you're presenting the reports through a custom report viewer you can bind the datasource for the subreports with the same datasource as the main report and save yourself the extra round trip(s) to the server. Otherwise, based on your description it may be possible for you to creatively use conditional formatting to hide/show group sections if the data for the main and subreports are from the same stored procedure.

link|improve this answer
Thanks for the reply. I didn't understood your explanation on binding the datasource for the subreports with the same datasource of the main report. This is what I exactly need. But unfortunately not sure how do it from your reply. Thanks. Will help if you can point me in that direction. – blntechie Nov 16 '11 at 20:27
You will need to either use java or .net crystal report viewer and bind the report datasource through code. How are the reports viewed by the end user? – Justin Nov 17 '11 at 1:04
We just launch a browser window from the app linking to the report URL with their parameters. We don't have a custom report viewer in our app. – blntechie Nov 17 '11 at 18:01
Then you will be hitting the database for each report and subreport. There is no way around it using the report server without redesigning the report and getting rid of the subreports. – Justin Nov 17 '11 at 19:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.