reporting-services

Bold the particular text in SSRS

不问归期 提交于 2019-12-04 17:26:07
I have one column in my stored proc which contains following data: abcs,defs,CA(5,6);wsdf,kdh,CA(7,8) Now I want only data in brackets to be bold and else everything regular, like so: abcs,defs,CA( 5,6 );wsdf,kdh,CA( 7,8 ) Create a custom code function to bold the text: right-click on a non-design part of the report surface, choose Report Properties... and click the Code tab. Enter the following code: Function BoldText(Text As String) As String return Text.Replace("(", "(<b>").Replace(")", "</b>)") End Function Go to your field cell and change the expression for the value from just the field

Visual Studio 2010 Reporting Services Projects?

ε祈祈猫儿з 提交于 2019-12-04 16:49:15
问题 So, it seems that Visual Studio 2010 does not support SSRS projects. At least not old ones.. Does anyone know what the status on this situation is and whether one can author new SSRS reports using VS2010 or if one should just use VS2008 BIDS? 回答1: SQL Server 2008 R2 = SQL Server 2010 (ish) "R2 doesn't integrate with Visual Studio 2010 as it targets VS 2008 only" read more here: http://prologika.com/CS/blogs/blog/archive/2010/03/16/bids-integration-story-in-r2-the-good-the-bad-and-the-ugly

rsExecutionNotFound error in SQL Server Reporting Services

陌路散爱 提交于 2019-12-04 16:34:06
I have a SQL Server Reporting Services 2005 installation that has worked great for a few years now, but has been giving me occasional glitches recently. I'm using the default reporting services website instead of embedding reports into my application, which has proven a very efficient way to deploy the reports. The OS is Windows Server 2003 and the reports are being viewed on IE8 running XP. It's not a big deal. Refreshing the browser brings the report right up each time. I guess it might be a cacheing issue. It does scare users, so it would be nice to squash this bug. Any ideas? Server Error

SQL Server Reporting Studio report showing “ERROR#” or invalid data type error

試著忘記壹切 提交于 2019-12-04 16:18:44
问题 I struggled with this issue for too long before finally tracking down how to avoid/fix it. It seems like something that should be on StackOverflow for the benefit of others. I had an SSRS report where the query worked fine and displayed the string results I expected. However, when I tried to add that field to the report, it kept showing "ERROR#". I was eventually able to find a little bit more info: The Value expression used in [textbox] returned a data type that is not valid. But, I knew my

In SSRS, how does an “Internal” parameter differ from a “hidden” parameter?

社会主义新天地 提交于 2019-12-04 15:46:42
问题 I've been wrestling with this one report for a long time, and finally figured out what to do but it was serendipitous . Well I changed a parameter that depends on a previous one to be "Internal" - then everythig worked like I wanted! thanks How does "Internal" differ from "Hidden" in SSRS? 回答1: Internal is not exposed and you cannot pass it to the report when calling with parameters from another one. Note it will not appear at the top where the user can change it. Hidden means that it won't

SQL Server Reporting Services url parameters not working

 ̄綄美尐妖づ 提交于 2019-12-04 14:53:03
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>Country</span></label> and <option selected="selected" value="0"><Select a Value></option> <option value=

Will there be a SSRS reportviewer in ASP.NET 5 MVC 6?

巧了我就是萌 提交于 2019-12-04 14:16:54
I am working on upgrading an ASP.NET 4.0 WebForms app to MVC6 and cannot find a solution for displaying SSRS reports. With the absents of System.Web the Microsoft ReportViewer control no longer works. What is the best practice for displaying SSRS reports on the web in ASP.NET 5? @Brian - ASP.NET MVC 6 is still in beta stage, its very early to plan for upgrading ASP.NET 4 web forms to MVC 6. Please try using ASP.NET MVC 5 for upgrading web forms, it (MVC5) will be there for many years to come. ASP.NET 5 will take good amount of time to mature, so don't hurry. There's no direct support for the

Passing values for multi-value parameter in SSRS query string

删除回忆录丶 提交于 2019-12-04 13:28:09
问题 I have two reports built using SSRS 2005. The first report is set to navigate to the second when a specific field is clicked. I am using an expression similar to the following in the "Jump to URL" property of the textbox: ="javascript:void(window.open('http://server/reportserver?%2fFolder%2fMyReport&rs:Command=Render&Date=" & Fields!Date.Value & "&MachineId=" & Fields!Machine.Value & "'))" There is a multi-value parameter on the second report. I need to pass multiple values for this parameter

Windows Authentication with SSRS ASP.NET ReportViewer and Web Service

♀尐吖头ヾ 提交于 2019-12-04 13:10:44
问题 I'm having a few problems using SSRS currently. I have an ASP.NET website that uses Windows Authentication. That works fine and I know the website current user is the currently logged on user. On this site is a webforms ReportViewer. This works fine when I don't set credentials. However looking at the execution log for the reports in SQL Server the Username is listed as DOMAIN\MACHINE. I've tried setting the ReportServerCredentials property to a class like the one below: [Serializable] public