reporting-services

ASP.NET reporting, what, how and when to use RDLC

血红的双手。 提交于 2019-12-12 01:07:47
问题 I am new to reporting in asp.net and can't get the things work up good for me. Basically, I made a demo of what was told here. Everything worked fine and it generated report on my local system. But, did not worked on the web server. Now, I've got a confusion here: There are 2 modes of a reporting in asp.net [VS 2010 - .NET 4.0], Local Mode and Server Mode. Local Mode has RDLC extension and Server mode has RDL as extension for the report design file, and it requires Sql Server reporting for

SSRS Execution Service ParameterValue variable index failing

爱⌒轻易说出口 提交于 2019-12-12 00:52:36
问题 SSRS Execution Service ParameterValue variable index failing I’m trying to use the SSRS Execution Service ParameterValue array without defining the number of indices. Microsoft’s example is this: http://technet.microsoft.com/en-us/library/reportexecution2005.reportexecutionservice.render.aspx ' Prepare report parameter. Dim parameters(2) As ParameterValue parameters(0) = New ParameterValue() parameters(0).Name = "EmpID" parameters(0).Value = "288" parameters(1) = New ParameterValue()

Find Row Changes and Output to Table

荒凉一梦 提交于 2019-12-12 00:42:55
问题 I have an SQL Server table of the following structure: id TransDate PartType ====================================== 1 2016-06-29 10:23:00 A1 2 2016-06-29 10:30:00 A1 3 2016-06-29 10:32:00 A2 4 2016-06-29 10:33:00 A2 5 2016-06-29 10:35:00 A2 6 2016-06-29 10:39:00 A3 7 2016-06-29 10:41:00 A4 I need a SELECT statement that will output a table that finds the changes in PartType , and that looks like this (for SSRS purposes): PartType StartTime EndTime =============================================

SSRS Alternating row color issues when some rows are not visible

徘徊边缘 提交于 2019-12-12 00:29:46
问题 I have a report where I have a customerID group, and no detail group. The dataset that I have going to the report will have each customer, as well as numerous columns of information for that customer. I have created a bunch of rows, that are labeled appropriately, and displays valid data associated with it (ex. Age: 34, Sex: Male). I also have some rows where the data coming back may be blank or NULL. These rows I choose to hide the visibility for. I am unsure how to handle the alternating

multiple images in SSRS Table Cell

本秂侑毒 提交于 2019-12-12 00:29:30
问题 I am using table in SQL Server Reporting Services. I am getting a data table from a database. The data table has three columns. One column has images names separated by commas. Data Table: Type Status Images 1 1 one.jpg,two.jpg,three.jpg 2 2 four.jpg,two.jpg,seven.jpg 3 1 one.jpg,six.jpg I am showing these three rows in an SSRS table. How can I show images as per row cell? 回答1: Dynamically adding images to an SSRS report isn't as easy as dynamically changing or hiding images. So two

Unexpected scrollbar in Reporting Services

旧时模样 提交于 2019-12-12 00:28:34
问题 I try to display reporting service report in iframe, and i have a interesting issue. Sometimes, but not always, there is some extra horizontal scrollbar. Solution have to work only in IE 9, 10, 11 . I could not find any rule, why it happens. Problem dissapears , when i hide header of report using rc:Toolbar=false. It occurs only in iframe. Reporting Services 2008 R2 回答1: There is a very simple solution. Issue occurs because parent document has html doctype and it is rendered by current IE

Control executing of hidden subreports inside tablix (SSRS)

怎甘沉沦 提交于 2019-12-11 23:57:55
问题 I am using SSRS2008R2, On my main report there is tablix inside tablic there is row (merged cells) which contain sub report. Subreport is initially hidden and toggled by other cell. When I preview my report it is working fine, I can show and hide sub report clicking on "referat" cell. But my problem is that for every row inside tablix SSRS generating subreport, That task take a lot of time. I want to make my hiden reports do not contain data and do not call SQL during first execution of

Linking URL to SSRS field, no data on report server

断了今生、忘了曾经 提交于 2019-12-11 23:56:19
问题 My report has a link to a resource I loaded to the report server. I've used some very helpful previous posts to get to this code which tests just fine: Code1 javascript:void(window.open('http://reportserverlink/test.pdf ','_blank')) I have the text box properties -> actions -> go to URL configured. The text box holds a field from my dataset and I want to bring up the corresponding PDF when clicked. Here is the code: Code2 javascript:void(window.open('http://reportserverlink/" & Fields

Email subscriptions to exchange groups

爷,独闯天下 提交于 2019-12-11 23:41:08
问题 I am attempting to set up a subscription on my report server that will send out an email to a outlook email group. However when I specify the group in the To: field on the report server I get the following email in response when the subscription is actually ran. Your message did not reach some or all of the intended recipients. Subject: Report was executed at 4/20/2011 9:39:02 AM Sent: 4/20/2011 9:39 AM The following recipient(s) cannot be reached Outlook Email Group on 4/20/2011 9:39 AM You

How can i add a field to dataset from another dataset in ssrs?

喜夏-厌秋 提交于 2019-12-11 22:54:36
问题 I want to add a field to dataset from another dataset in ssrs?can anybody help me to solve this? Thanks in advance!!! 回答1: if you are using SQl Server 2008 R2, you might be able to use the lookup functions to join the data inside of SSRS: http://blog.datainspirations.com/2010/03/19/sql-server-2008-r2-reporting-services-look-up-look-down-look-all-around-part-i/ otherwise you can use a SSIS package as a datasource to do you any type of join and then have your SSRS report use that. This is a