ssrs-2008

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 "

Make hidden table column take no space in SSRS 2008 R2

不羁岁月 提交于 2020-01-01 07:34:06
问题 Has anyone figured out a good way to make a hidden table/matrix column take no horizontal space? I could use some crazy conditionals to dynamically determine the contents of the columns (effectively sliding them leftward as far as possible), but that is nasty, plus doesn't allow for varying column widths in the columns to the right of the one I want to hide. The idea is that when a parameter is set to "Any" then the column with the corresponding value should display. But when the parameter is

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

Inserting a Page break into an SSRS report

限于喜欢 提交于 2019-12-31 11:02:11
问题 I have a report in SSRS that contains 12 subreports. After each subreport, I need to insert a page break so that each subreport starts on a new page and doesn't share pages with the other subreports. Does anyone know how to do this? Thanks 回答1: I found an answer. Use a Rectangle at the bottom of each SubReport after all Tablixes and other rendering Objects. Then set its "PageBreak" property to "End". When the SubReport is finished with the Tablix and/or other data objects, the Rectangle

Inserting a Page break into an SSRS report

笑着哭i 提交于 2019-12-31 11:01:47
问题 I have a report in SSRS that contains 12 subreports. After each subreport, I need to insert a page break so that each subreport starts on a new page and doesn't share pages with the other subreports. Does anyone know how to do this? Thanks 回答1: I found an answer. Use a Rectangle at the bottom of each SubReport after all Tablixes and other rendering Objects. Then set its "PageBreak" property to "End". When the SubReport is finished with the Tablix and/or other data objects, the Rectangle

How to stop asking for the credentials while deploying reports in ssrs 2008

偶尔善良 提交于 2019-12-31 04:13:29
问题 While deploying reports I am getting login prompt asking for the User Name and password. I have tried providing all possible id and passwords but no use. I can access both the Report manager url and ReportServer url but if I start deploying reports through SQL Server Business Intelligence development studio I am getting the above mentioned prompt. Please let me know how to avoid this. 回答1: Make sure that the server on which you are trying to deploy the Reports, you must be under the group

SSRS: Relative URL Hyperlink

萝らか妹 提交于 2019-12-30 09:07:07
问题 In SSRS 2008 I would like to create a relative path URL. Long story short I have a subscription that outputs a few thousand static HTML pages to a folder that is used as content for a website. In the past I have created full URLs to other pages on the site (sub-reports, really) using Text Box Properties -> Action -> Go to URL. I would like to modify my code so that it returns the relative path of the target instead of the full URL. This will reduce the likelyhood that someone will eventually

Pass data to ssrs report (.rdl) from code behind in ASP.NET C#, ProcessingMode=Remote

邮差的信 提交于 2019-12-30 07:34:09
问题 I can see that there are many questions already being asked regarding the same thing like: Binding a datasource to a rdl in report server programmatically - SSRS SSRS using Xml datasource [WCF], its possible, but is it advisable? and many others... But, what I really want is to have your valuable opinion before I start something and finally find myself at a dead-end ! We are developing reports in BIDS SSRS 2008 environment, VS 2010 for a Web application. with ReportViewer 10 having

How to Display beyond 24 hrs in SSRS 2008 in HH:MM:SS format

与世无争的帅哥 提交于 2019-12-29 09:28:28
问题 I have a report in SSRS 2008 that pulls data from a table with a column, TotalTime that is an Integer value in seconds. To display is as time I use this in the expression: =Format(DateAdd("s", Fields!TotalTime.Value, "00:00:00"), "HH:mm:ss") (got that from here: Display Seconds Count in HH:MM:SS format in SSRS 2008) Now, when the value goes beyond 24 hrs it does kind of a "module" value. I mean this: if the value would be 29 hrs, instead of displaying 29:00:00 it will display 05:00:00. If the

Report footer is not exported to Excel

廉价感情. 提交于 2019-12-29 08:27:09
问题 I am using SQL Server Reporting Services 2008 for reporting. When we export the report to Excel, the footer image or textbox is not exported. Header image is getting exported successfully. Does anybody know a solution for this? 回答1: Jon is correct they are exported but on opening the file you wont automatically see them as they are not displayed in "Normal" view, in 2007 switch to "Page Layout" view. not sure what its called in other versions of excel. Note: You also might want to read this