reporting-services

SSRS reports with querystring

非 Y 不嫁゛ 提交于 2020-05-01 12:09:38
问题 I am unable to access SSRS reports by passing parameter as a querystring. It doesn't yield any result. I did try passing parameter with &rs:par1=value or with &rc: as well. SSRS reports contains spaces as well. URL which provides all report's list is like: http://ipaddress:port/Reports/Pages/Folder.aspx?ItemPath=%2fMyfolder After clicking on any report http://ipaddress:port/Reports/Pages/Report.aspx?ItemPath=%2fMyfolder%2fReused+Report+v2 I did look at .rdl file & tried suffixing parameter

SSRS - Paging Control won't enable even if there are multiple pages

♀尐吖头ヾ 提交于 2020-04-30 07:15:20
问题 I have recently migrated reports from SSRS 2005 to SSRS 2014. Our web application load these reports from SSRS using URLs and reports loads perfectly fine except this weird issue with paging control (which was not an issue with 2005). As shown in below picture it shows number of pages using Global!TotalPages but for some unknown reason paging control is disabled so user cannot go to next page. PDF or EXCEL options will download entire report just fine. If I keep pressing Refresh button then

SSRS Report automatic page navigation/looping

烂漫一生 提交于 2020-04-18 05:28:12
问题 I have created a SSRS report that has 7 pages that I would like to have loop from beginning to end and then refresh every few minutes. Is this possible? I have been searching, but cannot find anything on how to do it. I have SQL Server 2008. Thank you! 回答1: I would set the AutoRefresh property on the Report object, using BIDS/Visual Studio. This is in seconds so a value of 120 = 2 minutes. 回答2: In SQL Server Reporting Services, we can set the report to refresh automatically based on a

Blank out duplicate column values in SQL Reporting Services

拈花ヽ惹草 提交于 2020-04-04 06:48:09
问题 This has to be stupid easy to do, but I'm not seeing it. I have a SQL Reporting Services (SQL 1008 R2) report. I'm using a tablix to basically show: COL 1 | COL 2 | COL 3 | COL 4 ---------------------------------- 100 | 100 | 100 | Item 1 100 | 100 | 101 | Item 2 100 | 100 | 102 | Item 3 100 | 110 | 110 | Item 4 100 | 110 | 110 | Item 4 100 | 110 | 111 | Item 5 100 | 110 | 112 | Item 6 But I want to suppress repeating values in those first two columns so it looks like this: COL 1 | COL 2 |

Firebird Database Stored Procedure in SSRS - not loading the stored procedure

孤者浪人 提交于 2020-03-28 03:45:15
问题 I have a stored procedure running in Firebird Database. Now I try to use this stored procedure to build a report in the SSRS 2012 (SSDT) Report Designer. After I connect to the dataset, and when I choose the Query Type as 'Stored Procedure', and type the name of my stored procedure, and then go to the Query Designer, and click ! (F5), I get the following error: TITLE: Microsoft SQL Server Report Designer ------------------------------ An error occurred while executing the query. ERROR [HY000]

How to process subreport of a subreport in rdlc?

无人久伴 提交于 2020-03-22 08:37:17
问题 I have an RDLC report which contains few sub reports. I am processing all those sub reports with LocalReport_SubreportProcessing event. Now out of these subreports, one report again has its sub report. I am not getting the idea how to process this sub report? For main report, I have added an event. viewer.LocalReport.SubreportProcessing += new SubreportProcessingEventHandler(LocalReport_SubreportProcessing); viewer.LocalReport.Refresh(); Code for event void LocalReport_SubreportProcessing

How to process subreport of a subreport in rdlc?

与世无争的帅哥 提交于 2020-03-22 08:35:22
问题 I have an RDLC report which contains few sub reports. I am processing all those sub reports with LocalReport_SubreportProcessing event. Now out of these subreports, one report again has its sub report. I am not getting the idea how to process this sub report? For main report, I have added an event. viewer.LocalReport.SubreportProcessing += new SubreportProcessingEventHandler(LocalReport_SubreportProcessing); viewer.LocalReport.Refresh(); Code for event void LocalReport_SubreportProcessing

Creating custom SSRS handler for field with HTML

孤人 提交于 2020-03-04 04:32:29
问题 I have an SSRS 2008 report with a field that contains and is configured to render as HTML. Some of the text in this field may contain IMG tags, and the IMG tag is not among the tags SSRS natively supports within its HTML rendering extension. I am trying to find a way to write a custom handler to hook into the processing of this field that will let me look at the raw HTML before the SSRS handler processes it, in the hopes of grabbing IMG tags, extracting the SRC URL and getting the raw bytes

Reference Field in Table1 From Table2

∥☆過路亽.° 提交于 2020-02-25 09:42:34
问题 I have two tables each with a separate DataSource. Table1 has a total column at the bottom. In my Table2, I want to point a row in Table2 to the Total column in DataSet1. I tried using this: which is field name, and dataset name. What would allow this to happen if at all? =Sum(Fields!TotalCount.Value, "SalesTotals") 回答1: What you have should work just fine...or to reference a total column in the other table, you can reference the report item itself. For example, if the name of the cell that

Reference Field in Table1 From Table2

假装没事ソ 提交于 2020-02-25 09:41:20
问题 I have two tables each with a separate DataSource. Table1 has a total column at the bottom. In my Table2, I want to point a row in Table2 to the Total column in DataSet1. I tried using this: which is field name, and dataset name. What would allow this to happen if at all? =Sum(Fields!TotalCount.Value, "SalesTotals") 回答1: What you have should work just fine...or to reference a total column in the other table, you can reference the report item itself. For example, if the name of the cell that