reporting-services

How to hide parameter based on another parameter value in SSRS

偶尔善良 提交于 2020-01-02 11:07:26
问题 Hi I have 2 parameters param1 and param2. param1 has values true and false.my requirement is if i select true in param1 then param2 should be hidden and if i select false in param1 then param2 should be visible. can this be achieved in SSRS? 回答1: As per Nathan's comment i am adding Amar's comment here as answer/partial answer Unfortunately, you cannot change a parameter's visibility during run time. Alternatively, you can control the second parameter's values based on the selected value of

Fetch XML report aggregate undocumented limit

半世苍凉 提交于 2020-01-02 10:12:05
问题 I've been struggling with this one fetchxml report for Dynamics CRM online. The report is using aggregate to detect duplications based on certain fields. So, even though it is an aggregate report, the data set will return a lot of rows. Then I found out that the number of rows returned for aggregate fetchxml is limited to 5000. I understand that normal fetchxml report will return records more than 5000 but for aggregate report, this doesn't seem to be the case. In the resultset, the

SSRS 2016 Native Double-Hop Windows Authentication

不羁的心 提交于 2020-01-02 09:19:34
问题 Myself and another admin have been trying to troubleshoot the double-hop authentication issue on our new reporting server (where the report runs as the authenticated user, but cannot delegate to the data source and returns a 'NT Authority\Anonymous’ authentication error) and we seem to be hitting a dead end. Here is a bit about our setup. We have SSRS 2016 installed on one server, and our data source for reports is on another server. We have done the following steps to try and enable

How to export a csv without header in SSRS

╄→尐↘猪︶ㄣ 提交于 2020-01-02 07:08:12
问题 Is there any way of turning off the header for a CSV export on just one SSRS report? I'm using Report Builder 3 and I deleted the headers from the report, but when exporting to CSV they're back. I can't find anywhere to turn them off. I've seen this question but it seems to cover all reports on the server, I only need to turn the headers off for a couple. 回答1: You can't do anything with the data driven subscription out of the box. It might be possible to write a custom subscription extension

Exporting PDF in Reporting Services

☆樱花仙子☆ 提交于 2020-01-02 04:33:13
问题 Does anyone know if it is possible to alter the page size/scale of a report when it is displayed in PDF after an export? The problem we have is one of our users has created a report with a large number of coloumns in the table, the table then runs on to the next page of the report. We have altered the page setup to landscape within the Business Intelligence Studio which then renders the report in landscape in PDF. However when I changed the page settings to A3 this doesn't solve the issue. Is

Getting the error “Data retrieval failed for the subreport, 'Subreport1'” while trying to preview a report from Business Intelligence Studio

大憨熊 提交于 2020-01-02 03:47:04
问题 I know this question has been asked before, but all questions were for reports being accessed using C# or vb.net code. My problem is that i am building and accessing the report using Business Intelligence studio, I am basically trying to add a sub report for a report, and I made sure from the parameters and they are ok. However when i try to access the report containing the subreport, I get the error "Data retrieval failed for the subreport, 'Subreport1'". I also tried deleting the .data

how to avoid to Specify a username and password for datasource in SSRS?

試著忘記壹切 提交于 2020-01-02 03:37:06
问题 I am using SSRS as a part of my project for displaying reports. It accesses data from SQL data source.Here my problem is that each time I view my report on the browser, it asks me like this "Specify a user name and password for data source" I need to avoid this prompt while seeing my report on the browser. Kindly suggest what should i do to get rid of my problem. 回答1: Yes this can be fixed.. You should Go into your DataSource properties Select Credentials Select "Use this user name and

Is there a report tool that allows users to create their own reports?

丶灬走出姿态 提交于 2020-01-02 03:34:30
问题 I have looked around a bit but I can't find a tool that fit my needs. What I need is a tool that allows users to create their own reports preferably from a web interface where the user is able to create charts, diagrams and tables . Therefore the tool needs to be able to handle several users and restrict the users to a certain database . I have looked at Crystal Reports and SSRS and neither of them seems to support what I want or am I missing something? 回答1: So, you're looking for a web-based

Report viewer Error message “client found response content type of '' but expected 'text xml' The request failed with an empty response.”

人走茶凉 提交于 2020-01-02 02:29:10
问题 I'm getting the error client found response content type of '' but expected 'text xml' The request failed with an empty response. when I try to execute the following code. //create a PDF from the SQL report ReportViewer rview = new ReportViewer(); rview.ServerReport.ReportServerUrl = new Uri("http://server/ReportServer$MSSQL2K5?"); List<ReportParameter> paramList = new List<ReportParameter>(); paramList.Add(new Microsoft.Reporting.WinForms.ReportParameter("Batch", "1")); paramList.Add(new

Possible to extract Embedded image to a file?

吃可爱长大的小学妹 提交于 2020-01-02 01:31:05
问题 Given a SSRS report definition file with an embedded image in it, just wondering if its possible to extract that image XML to recreate the original image file. e.g. : inside the rdlc file, you might see xml like this : <EmbeddedImage Name="tick"> <MIMEType>image/bmp</MIMEType> <ImageData>Qk1mAwAAAAAAADYAAAAoAAAAEAAAABEAAAABABgA ... <<REST OF IMAGE HERE>> </ImageData> </EmbeddedImage> Is it possible to take the ImageData, and transform form it in some way to re-create the original image bitmap