ssrs-2008

SSRS 2008 Hidden Columns Should NOT Export to CSV

时间秒杀一切 提交于 2019-12-21 07:38:53
问题 When I hide columns in SSRS they still appear in the CSV export. I have to hide columns, not the entire tablix. This is what I have tried already: The filters in the tablix hide rows not columns. The DataElementOutput per column can not be set using an expression. 回答1: Format options such as expressions on visibility are ignored for CSV rendering methods. CSV rendering methods are essentially data flows, so you can suppress elements that you don't want to include in CSV files by changing the

SSRS Reports Versioning

拟墨画扇 提交于 2019-12-21 07:38:13
问题 I'm looking for a way to get versioning informations out of my SSRS reports. I have several environments and would like to be able to compare which report version is deployed on these environments. In SSIS this is very easy because each SSIS package gets a new version when it was modified and safed. Is there something similiar with the reports ? 回答1: Unfortunately there currently is no built-in functionality similar to a dll assembly version for RDL files. The only way to get some kind of

ssrs setting column visibility on rowgroup

放肆的年华 提交于 2019-12-21 06:59:08
问题 I'm trying to hide a column but it belongs in the RowGroups area. Unfortunately, the Column Visibility is greyed out and disabled. I'd like to just hide the column under certain conditions (using expressions) but keep the grouping. I found a similar question on SO but its solution did not work for me. Is there a workaround for this? ssrs column visibility inside row groups I've tried shifting some of the columns to the body area of the tablix, but then I can't merge cells vertically. I'm not

How to use gmail account for ssrs email subscription

孤者浪人 提交于 2019-12-21 03:16:07
问题 I have a report using SSRS 2008 R2 , I want to subscribe to this report using the "email" option. I have configured the settings in the reporting services manager to use server as "smtp.gmail.com" and sender address as my gmail ID. I also tried using the SMTP virtual server and relay it using smart host as "smtp.gmail.com". But I get the following error while sending email : Failure sending mail: The transport failed to connect to the server. I am using IIS 7 and Windows Server 2008 .

Implementing Target lines, in SSRS column Charts

℡╲_俬逩灬. 提交于 2019-12-21 03:10:51
问题 I have a column graph, that shows a trend of consumption over time, The y-axis being consumption and x-axis being time in month, I have to implement a target consumption. I implemented a target, by adding data field with a Line chart type, this is a constant, and will just display a horizontal line. The problem i am facing is, if there is only one month, the line disappears? is there a way not to have it disappear, or is there a better way to add line target in column charts in SSRS I am

Reporting Services Chart - Custom Axis Label

百般思念 提交于 2019-12-20 15:26:31
问题 I have a SQL Server Reporting Services (2008) chart (error chart). The X-axis has date intervals 1/1/2009, 2/1/2009, etc. The Y-axis has numeric intervals of 50. Values on the Y-axis are 0, 50 and 100. However, instead of displaying 0, 50 and 100 i would like to display "Small","Medium" and "Large" respectively. Does anyone know how this text replacement can be performed? 回答1: This is a bit of a hack, but here goes: First, normalize your values around zero, so the smallest value is -50 and

Consume web api in SSRS with parameter

回眸只為那壹抹淺笑 提交于 2019-12-20 11:28:11
问题 I am trying to consume webapi in ssrs ( XML source ). If will use parameter in the url (for testing purpose ) then its working really fine for example - http://some_xyz_url.com/Api/Report/GetReport?id=7 . so I can consume web api in SSRS Real problem - I do not know how I can pass parameter to webapi from SSRS. I tried hard but no luck. Also I have searched stackoverflow there is no question near to my requirement. I am using VS2012, (.net framework 4.0), SQL server 2008 (using Microsoft SQL

In SSRS, how to create a dynamic 'where' condition using multi value parameters

与世无争的帅哥 提交于 2019-12-20 06:39:51
问题 First I will mention a bit of my work to better understand my question So, in SSRS, I have multiple parameters which all are sent to procedure using =Join(Parameter!x.value,",") then in the procedure I create a where condition by concatenating all the parameters. Something like this: > Set @where = > 'and Table.Column in(''' + replace(RTRIM(LTRIM(@Parameter1)),',', ''',''') > + ''')' + ' > and Table.Column in(''' + replace(RTRIM(LTRIM(@Parameter2)),',', ''',''') > + ''')' + ' > and Table

SSRS how to add in New line

て烟熏妆下的殇ゞ 提交于 2019-12-19 12:52:22
问题 I am creating a string from stored procedure like this Name1 , Name2 , Name 3.... etc(This string is in one column). I want to display these name in a new line in my SSRS report like Name1 Name2 Name3 I tried changing the string to Name1 VbCrlf Name2 VbCrlf Name 3 Doesn't seems to be working. Please help me to resolve this issue. 回答1: Use an expression like: =Replace(Field!Names.Value, ",", VbCrLf) 回答2: ="Name1:"+ Fields!name1field.Value + VbCrLf + "Name2:"+ Fields!name2field.Value + VbCrLf +

User impersonation between asp.net and ssrs

血红的双手。 提交于 2019-12-19 10:58:27
问题 I have a web application that has application pool configured using domain account. In SSRS, domain account is given the browser access to the folder and SSRS report is configured with proper credentials. My question is if SSRS report is launched from the web application, will SSRS report be opened under domain account or my account. Currently, it is giving error message as \ doesn't have sufficient permissions to access the report location. 回答1: You just need to set a fixed user in the web