Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
ntswakisto
Starting Member
33 Posts |
Posted - 2009-07-16 : 06:44:39
|
hiI am trying to add a SubReport to the Main Report,,it's my first timr doing this so I am not sure how to add data or make report work..I went to design view of main report and clicked subreport from Toolbox and dragged the subreport to the design view... then clicked subreport properties for report name and don't know what to do next on parameters.when i preview the report ..under Subreport I get Error:SubReport could not be shown.... |
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2009-07-16 : 13:44:54
|
have you tried viewing the report that you're refering in main report first? is that report rendering correct? also what are its poarameters and default values? you need to give this in subreport properties of main report |
|
|
ntswakisto
Starting Member
33 Posts |
Posted - 2009-07-17 : 06:01:44
|
quote: Originally posted by visakh16 have you tried viewing the report that you're refering in main report first? is that report rendering correct? also what are its poarameters and default values? you need to give this in subreport properties of main report
HiMy query for main report looks like this is a pivot query.....Select PackingSlipDate,Units,[Bag],[BoxAA],[BoxFX],[EmptyStand],[FullStand],[Other],[PullFrame],[Rods],[StandComp],[TpPullFrame],[Tracks]From (SELECT HHCT.ContainerType,convert(varchar(10),JMPSH.CreateDate,111) + ' ' + '(' + Datename(Weekday,convert(varchar(10),JMPSH.CreateDate,111))+ ')' as PackingSlipDate,Count(JMPSH.pkPackingSlipID) AS Total,Sum(Sum(JMPSH.Items)) Over (Partition By convert(varchar(10),JMPSH.CreateDate,111) + ' ' + '(' + Datename(Weekday,convert(varchar(10),JMPSH.CreateDate,111))+ ')' ) as UnitsFROM Cetus.dbo.JMPackSlipHeader as JMPSHINNER JOIN Cetus.dbo.HHContainerType as HHCT ON JMPSH.fkContainerType = HHCT.pkContainerTypeIDINNER JOIN usCustomers.dbo.Customers As C ON JMPSH.CustomerID = C.CustomerIDWhere JMPSH.CreateDate >=@startdate AND JMPSH.CreateDate < dateadd(day, 1,'2009/06/10')and C.MerchPreference = 'Y'GROUP BY HHCT.ContainerType,convert(varchar(10),JMPSH.CreateDate,111) + ' ' + '(' + Datename(Weekday,convert(varchar(10),JMPSH.CreateDate,111))+ ')') AS SPIVOT(Sum(Total)FOR ContainerType IN ([Bag],[BoxAA],[BoxFX],[EmptyStand],[FullStand],[Other],[PullFrame],[Rods],[StandComp],[TpPullFrame],[Tracks])) AS PORDER BY PackingSlipDateIn the Subreport I need to show sum ot total Pivoted columns...do I use the same parameters as the ones in the main report and do I need to create a new dataset for the Subreport? |
|
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2009-07-17 : 14:17:36
|
you need to create a report first to display for subreport and then call this from subreport tool of parent report. the parameters passed depends on parameters you created for report. |
|
|
ntswakisto
Starting Member
33 Posts |
Posted - 2009-07-21 : 08:56:44
|
quote: Originally posted by visakh16 you need to create a report first to display for subreport and then call this from subreport tool of parent report. the parameters passed depends on parameters you created for report.
Help....please.I have created a report for subreport but when I add the report to the main report it doesn't want to show still....How do I add parameter values or make the report display? |
|
|
ntswakisto
Starting Member
33 Posts |
Posted - 2009-07-22 : 06:01:09
|
quote: Originally posted by ntswakisto
quote: Originally posted by visakh16 you need to create a report first to display for subreport and then call this from subreport tool of parent report. the parameters passed depends on parameters you created for report.
Help....please.I have created a report for subreport but when I add the report to the main report it doesn't want to show still....How do I add parameter values or make the report display?
I managed to add parameter values to subreport and it is showing in the main report ...thanks..... |
|
|
tahseenm
Yak Posting Veteran
64 Posts |
Posted - 2009-08-07 : 13:08:02
|
What I did is that I create a new report which is actually a subreport and name it and save it in the same project. Then click on the subreport you created and drag and drop in to your main report. Before you drop the subreport create a table from the toolbox and put this subreport in to this table. Once you drop the subreport in to the table any field then click on the report and right click/properties/name the report/click parameters/select the primary key or id#/click ok and you are done. Click preview on your report and see it works. Let me know if this works. Thanks!I am trying to add a SubReport to the Main Report,,it's my first timr doing this so I am not sure how to add data or make report work..I went to design view of main report and clicked subreport from Toolbox and dragged the subreport to the design view... then clicked subreport properties for report name and don't know what to do next on parameters.when i preview the report ..under Subreport I get Error:SubReport could not be shown....[/quote]moetahsen |
|
|
tahseenm
Yak Posting Veteran
64 Posts |
Posted - 2017-01-04 : 13:30:11
|
I am trying to run this stored procedure manually to output a csv file, but its running for ever. Normally it takes about from 30 sec to 1min 30 sec the max. I am having this issue since 3 weeks and my finance dept. cant have any csv reports to get. I am not getting any errors. We are using SQL 2005 server. Can anyone let me know what to do to fix this issue. Any help is appreciated. Thanks and this site is awesome and always my issues get resolved. Thanks a lot.moetahsen |
|
|
|
|
|
|
|