subreport

How to split a Crystal Reports subreport across a page break?

I'm using Visual Studio 2005 and writing in VB.NET. I have a subreport in a Crystal Reports report consisting of a list of log entries. Sometimes the list of log entries is long enough that it would extend onto the next page. What I see happening is that the list appears on the next page, leaving a big blank space at the bottom of the...

Reporting Services - get data into subreports

I'm tasked with reporting on survey data using Reporting Services 2008. My challenge is this: a survey has any number of questions a question is one of three types (a numerical eval, a yes/no question, or a free text) To handle this, I decided to use subreports on my main report, e.g. I defined one report for each of the three que...

SubreportProcessing Event not Firing

I'm using rdlc reports in WPF, so have done so using WindowsFormsHost wrapper. The rdlc report I'm looking for run has a subreport embedded in it, and I'm setting the data source of that using the SubreportProcessing event of the ReportViewer. Viewer.LocalReport.SubreportProcessing += new SubreportProcessingEventHandler(LoadAccessories...

Are there settings in Crystal Reports that modify sort order of data sources?

I'm working with Crystal Reports in VB.NET in Visual Studio 2005. I have a List(Of Stuff) that I've sorted according to one of the object's members. I've verified in the debugger that the list is sorted correctly. When I define my list as the data source, as in rptDetails.Subreports.Item("rptSubReport").SetDataSource(theListOfStuff) ...

Problem creating subreport for Javabeans datasource in iReport 3.7.0

Hi, I am using iReport 3.7.0. The subreport wizard screen do not show my any Javabean class to select. Please let me know if anybody has encountered this problem and got a solution. Creation of PersonDatasource: Source code for the Javabeans avialable at http://www.brucephillips.name/jasperreports/examplesource.zip ...

Subreports are not getting printed.

I tried to create a very simple report with a subreport. The subreport was created separately and was embedded in the data group. The subreport separately gives me the relevant data. and the other main report gives me the intended partial data. But the data intended in the place where the subreport has been embedded is not appearing. It ...

Using subreport in crystal reports 8.5, How can we stop overlapping it with the end of the main report?

hi I've created a new report using crystal reports 8.5. In it, I've used 3 sub reports and they are positioned in main report vertically. My question is, How can I stop overlapping them with each other and also with the down border of the main report? thank you ...

Mutiple rdlc files in one report viewer control -- can it be done with subreports?

Hi, I have multiple reports that take the same parameters. Need to create a master report with all the reports merged together. I dont want to copy paste the rdlc files into one large file. found a control by Telerik called ReportBook but it costs money!! http://www.telerik.com/help/reporting/designing-reports-general-explanation.ht...

Problem with auto page break in iReport

Hi... I'm using iReport 3.7. I have a report with two subreports (order details and some selling statistics), and a grouping by seller. One subreport is located in the Detail band of the group, and the other one is in the group footer. What's really odd is that no matter how long the report is, when I export it to PDF it's always one ...

Crystal Reports: Is there a way to get effectively a subreport within a subreport?

UPDATE: I asked a more general question here: http://stackoverflow.com/questions/2166963/can-i-do-two-levels-of-linking-in-crystal-reports I'm using Crystal Reports within VB.NET and Visual Studio 2005. I have a report with several subreports. I'm setting List(Of MainStuff) as the data sources for the main report. I'm setting List(O...

Can I do two levels of linking in Crystal Reports?

Let's say I have three lists: Departments, Divisions, and Groups. A Department is made up of Divisions, which in turn is made up of Groups. The Divisions have the Department ID as a foreign key. The Groups have the Division ID as a foreign key. I'd like to produce a report that looks like this: Department 1 Division 1A ...

Crystal Report on C#

Well I have a Cyrstal report which has 4 sub reports on and it is linked through an ItemID column and a Culture, so it has a parameter value "?Pm-ItemID" and "?Pm-Culture" now i'm using DataSet to load the data to the Crystal Report's datasource, when I run the report its giving me an error which was an asking parameter field was not sup...

Crystal Reports Sub-report not displaying data

I currently have a crystal report that I'm generating in Visual Studio 2008 which has a sub-report. I've linked the sub-report parameters and when I run the report from the report previewer within visual studio, it runs fine. HOWEVER When I deploy the report to my production server, the report runs and the main report has data, but the...

ReportViewer Nested SubReport

I have 4 reports Report A, Report B, Report C and Report D with datasources dsA, dsB, dsC and dsD respectively. Report A is a Main Report which has the subreport B has a subreport C ... The Report A fills the datasource dsB in the SubreportProcessingEvent with the parameter from ReportA. i would need an event which is fired for every ...

SSRS 2005 Subreport Parameter Challenges

Good Morning, I have written my main report that contains a field called MSDRG. I have also written a subreport, called MDDETAILS, that also contains the same field. In my main report, I've created a report parameter named MSDRG, available values non-queried. In my subreport, I've created a report parameter named MSDRG also. Setting...

SSRS Passing values between list and subreport

So this is like my third SSRS question and I've only been looking at it for a day :S This question may be a little sketchy as I'm still not up with the terminology. Basically I have a list that is bound to a "Select" of SiteId's. Inside this list I have a sub report. The idea is to pass these SiteId's into the sub report one at a time ...

Jasper Reports: How can i have multiple growing subreports in a report?

Hi, My Requirement is to show two sub reports in a Report. What I am doing is, I have created two sub-reports and put that into a report. But the issue is that, both the sub reports are growing (i.e. their height is not static as the number of records are variable). I just want the second sub=report to appear after the end of first sub...

SQL Reporting Services - Subreports Broken into multiple columns

Hi, I inherited an SQL Reporting Services .rdl project from somebody and need help fixing some functionality. In each row of the report, there is a subreport. In order to save space the subreport is divided into 3. Such that in each row of the report, it splits the data of the subreport into 3 smaller tables. Right now, it fills these ...

Blank subreport in Jasper Reports

Hi all, I'm trying to launch a report that I created in iReport which contains a main report and a subreport. In iReport, the subreport launches fine and contains data, however when I try to launch it from within my java code, the subreport is blank. What I've done so far: I have a String parameter in the main report called "SUBREPOR...

Using C# with Crystal Reports, How Can I Create 4-Up Subreports?

The simplest example that I can provide for what I want to do is this: I need to create a Report, whose only requirement is that I have (4) of the same subreport on the page (imagine 4 portrait-oriented post cards on a page), each quadrant using a separate row from my datatable, yet all 4 are identical in terms of fields. If there are ...