reporting-services

SSRS Migration Sharepoint Integrated to Standalone

旧巷老猫 提交于 2019-12-08 11:37:16
问题 I'm using RS.exe to migrate from a sharepoint-integrated SSRS server to a standalone SSRS server. When I run the command I think SHOULD work, I get an error related to a missing SiteURL parameter. I want to copy all contents from the source SSRS box to the destination, so my understanding is that the defaults should be acceptable. Documentation for this migration path seems thin. I'd appreciate help in figuring out how to get this done. Below are the command and error text: c:\IT>rs.exe -i

SSRS - How to show external image based on URL inside column

会有一股神秘感。 提交于 2019-12-08 10:47:02
问题 I am trying to show images for products inside a basic report. The image needs to be dynamic, meaning the image should change based on the SKU value. Right now I am inserting an image into a table, setting to external, and i've tried: =Fields!URL.Value =http://externalwebservername/sku= & Fields!SKU.Value ="http://externalwebservername/sku=" & Fields!SKU.Value I do not get any images in my table. My stored proc has all the data, including a URL with the image I wan't to show. Here is a sample

How can I assign sheet names when exporting an SSRS report to Excel?

↘锁芯ラ 提交于 2019-12-08 10:13:28
问题 I am able to have a report with multiple subreports export to Excel with each subreport on a separate tab/sheet using the info here (placing each subreport within a Rectangle control and setting its PageBreak property to "Start"). I hoped that setting the Rectangles' PageName property would set the sheet names to what I assign there, but no - they are simply " Sheet 2 ", " Sheet 3 ", etc. So how can I assign a specific value to the sheet names so that those values are used when the SSRS

SSRS2008 ASP.NET ServerReport fails on IE11 with OEM UserAgent

可紊 提交于 2019-12-08 10:04:52
问题 I am rendering a SSRS ServerReport to PDF and in the ReportViewer WebForm Control in a ASP.NET 3.5 Application with a SQL Server Report Service 2008. Some people using Internet Explorer 11 reported that they cannot open generated PDF files or see anything in the viewer. The rendering fails with this error: library!ReportServer_0-403!7c8!01/02/2014-11:07:37:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException: , Microsoft.ReportingServices.Diagnostics

SSRS BIDS SUMMING A SUM TO PRODUCE A SUM

 ̄綄美尐妖づ 提交于 2019-12-08 10:04:32
问题 Please see attached images. On the light blue row I need total percentages next to the total days. There are 3 classifications : Project, RFC and Support, each has two sub colums (Days and Total%) I have included a sum for total days added up which is =Sum(Fields!Days.Value) I now need the TOTAL percentage for each of the 3 classes 回答1: You can add a scope to the SUM to specify which Group to sum. =Sum(Fields!Days.Value,"classification") for example. 来源: https://stackoverflow.com/questions

Report showing NO DATA when uploaded to crm online

 ̄綄美尐妖づ 提交于 2019-12-08 09:52:16
问题 When building a report in SSRS and viewing it in PREVIEW mode, my report is showing lots of data; however, when deploying it to CRM online 2013, this is what I am getting: This is CRM DYNAMICS ONLINE 2013 The data source is FetchXML and does not change I've removed all filters from the report and it still displays nothing. I'm using windows authentication My FetchXML data source is configured this way: Why is my report being generated fine in preview mode, yet when I upload it to CRM 2013

Duplication of charts in published SSRS 2012 reports

巧了我就是萌 提交于 2019-12-08 09:48:32
问题 I have a set of 16 charts I need to display for each group in my dataset. I have it working perfectly in the design environment. The charts are in a list control with grouping on one field. Each unique group should result in a set of 16 charts. The problem only exists after I deploy it. The charts repeat across the screen, even covering the SSRS controls in the browser so I cannot click print, export, etc. (See screenshot) Some things I've tried: 1. Using compatibility mode makes no

hiding and removing white space of header in ssrs report

谁说我不能喝 提交于 2019-12-08 09:18:04
问题 I'm working on ssrs report,i need to hide the header on last page for that I did visibility changes to the controls inside the header whatever I used. I used this code =IIF(Globals!PageNumber = Globals!TotalPages - 1 or Globals!PageNumber = Globals!TotalPages ,true,false) it's working fine. but after hiding the header controls the header white space showing on last page. i need to remove the white space occupying by header is there any way to remove that. 回答1: You are hiding the controls on

SSRS Subscription File Name w/ Date

梦想的初衷 提交于 2019-12-08 09:09:39
问题 I have a series of reports that run at different schedules (hourly, daily, weekly, etc) The reports are saved to a share \unc\reports\department\ report report_1 report_2 report_3 As this is the only way to create a new version. My question is if there is a way to append either execution time or even just the date so the end user can see the time the report was generated. Currently it is done by looking at date modified properties, which is Ok, but not ideal. 回答1: You can capture the runtime

How to show group by columns on top of the table header instead of on the left in rdlc

放肆的年华 提交于 2019-12-08 08:32:42
问题 I have a report with columns EmpType(Full Time/Part Time etc),EmpLocation(Redmond/Seatle/Washington etc),EmpBand(S/T/E etc),EmpId,EmpName,EmpFullAddress,EmpContactNo,EmpSal,EmpGender,EmpDob. We need to group the data by columns EmpType,EmpLocation,EmpBand and then display rest of the columns as data. I could use the group by feature of the rdlc report to first group by EmpType then by EmpLocation as its child and EmpBand as child group of EmpLocation but these three values appear on the left