reporting-services

SSRS: Get list of all reports and parameters in a single web service call?

夙愿已清 提交于 2020-01-02 01:13:04
问题 Short and sweet version: Is there a single web service method that would return the names of all available reports, and each report's parameters? I have my web code (C#/MVC) connected to a SSRS web service, and I am able to retrieve reports through those services. I know I can get a list of available reports like this: var rService = new ReportingService2005 { Url = @"http://domain.com/ReportServer/ReportService2005.asmx?wsdl", Credentials = System.Net.CredentialCache.DefaultCredentials };

SSRS 2016 can't set credentials when using an expression based connection string

喜你入骨 提交于 2020-01-02 00:36:05
问题 I am trying to deploy a SSRS report to a 2016 server which uses a an API as it's data source. The URL for the API is generated dynamically via an expression which builds the query string based on a couple of report parameters. In the past, using report manager I could set which account the API is called under. Note that in the above screenshot the Connection string is still expression based. However if I attempt the same thing in 2016 the connection string is wiped out. Surely the connection

How to pass multi value parameter to SSRS from asp.net c#?

半腔热情 提交于 2020-01-01 19:47:09
问题 I am hooking up a site with an embeded ReportViewer control. I need to pass a Multi-value parameter (string data type) to the report. I have tried using the following methods but each time the report errors with a parameter is missing a value. here is the method I am using: string s = String.Join(",", paramValue.ToArray()); // method 2 carriage return new line delimited string string s = String.Join("/r/n", paramValue.ToArray()) + "/r/n"; // method 3 values as a string array string[] s =

SQL Server Reporting Services url parameters not working

天大地大妈咪最大 提交于 2020-01-01 16:50:12
问题 I cannot correctly pass the parameters to a SQL Server Reporting server. The report page is displayed, but the Report Viewer Web Part’s parameter prompts are still empty and nothing is run. The following url takes me to the correct report page, where I can manually select the parameters, then click the "View Report" button and get a report. http://MyServer/ReportServer?%2fProjects%2fProject_Report The following are in the report webpage source: <label for="ctl32_ctl04_ctl03_ddValue"><span

DateTime as empty String or null ?How to check?

帅比萌擦擦* 提交于 2020-01-01 15:36:30
问题 Q: I want to check the DateTime against null value to empty the cell in my report if the datetime is null.but i don't know how to do this :it appears like this 1/1/0001 if it was null.and i want it to be empty cell. This is the datatype in my dataset : and this is the expression value of my column : =FormatDateTime(Fields!D_DateTime.Value,2) 回答1: As I told you in my comment, you should check if your date is DateTime.MinValue (the minimum value a date can assume, which is exactly 01/01/0001).

How to I get cumulative monthly subtotals in SSRS?

断了今生、忘了曾经 提交于 2020-01-01 13:35:33
问题 I'm using SSRS to create a report which shows a lot of transactions according to a trade date. I've made a group on the month and year called 'grpMonthYear' . Inside that group I've made a subgroup on 'TradeDate'. The groups and all work perfectly. I'm also generating monthly subtotals in the footer of the group 'grpMonthYear'. But now I want the cumulative subtotals. Example, if Jan'13 totaled up to $5,000.00 and transactions in Feb'13 totaled up to $7,000.00 So the monthly subtotal in Feb

WinForms ReportViewer: slow initial rendering

情到浓时终转凉″ 提交于 2020-01-01 10:47:34
问题 UPDATE 2.4.2010 Yeah, this is an old question but I thought I would give an update. So, I'm working with the ReportViewer again and it's still rendering slowly on the initial load. The only difference is that the SQL database is on the reporting server. UPDATE 3.16.2009 I have done profiling and it's not the SQL that is making the ReportViewer render slowly on the first call. On the first call, the ReportViewer control locks up the UI thread and makes the program unresponsive. After about 5

Execute .exe in SSRS Report

旧时模样 提交于 2020-01-01 07:34:08
问题 i want to execute a .exe in a SSRS Report from Microsoft Dynamics AX . I tried so far to realize that over Custom Code and a Textfield with following Expression: =Code.StartProcess("test") Public Function StartProcess(ByVal s As String) As String Dim pHelp As New ProcessStartInfo pHelp.FileName = "test.bat" pHelp.Arguments = s pHelp.UseShellExecute = True pHelp.WindowStyle = ProcessWindowStyle.Normal Dim proc As Process = Process.Start(pHelp) Return "it works" End Function I get the error "

Report (RDLC) Localization/Globalization

天大地大妈咪最大 提交于 2020-01-01 05:25:14
问题 [VS2010/ASP.NET Web Forms] Hi, In a report (RDLC) I need to provide localization/globalization in two languages (pt-BR and en-US) to the following elements: - Labels/Captions (fixed text) - Report Viewer UI interface (buttons and tooltips to controls like find, next, previous, etc.). - fields formating, according to the current culture What is the best way to achive this? To translate the fixed captions/labels I´ve found some solutions that make a manual translation of RDLC´s XML definition,

Download all SSRS reports

元气小坏坏 提交于 2020-01-01 04:30:06
问题 I want to get a copy of all .rdl files in one server. I can do the download manually one report at the time, but this is time consuming especially that this server has around 1500 reports. Is there any way or any tool that allows me to download all the .rdl files and take a copy of them? 回答1: There is a complete & simpler way to do this using PowerShell. This code will export ALL report content in the exact same structure as the Report server. Take a look at the Github wiki for other options