reporting-services

SSRS 2012 Custom Code .NET Framework 4.0 not supported

冷暖自知 提交于 2019-12-05 11:06:10
问题 I was very hopeful that since SQL Server 2012 SQLCLR supports .NET 4.0 that SQL Server Reporting Services (SSRS) 2012 would support .NET 4.0 custom code assemblies. When attempting to upload an rdl (via the Report Manager or via RSBuild) that references .NET 4.0 assemblies, the Reports Manager throws an error stating This assembly is built by a runtime newer than the currently loaded runtime and cannot be loaded. (rsErrorLoadingCodeModule) Is there something I can configure to get SSRS 2012

SSRS Report - IIF statement Question

旧街凉风 提交于 2019-12-05 10:34:45
Doing an expression I get an error, can someone show me the correct syntax here? =IIf(Fields!t_cpcp.Value ="310", "Purchased Material & Raw Material", Nothing) =IIf(Fields!t_cpcp.Value ="320", "Manufacturing Direct Labor", Nothing) =IIf(Fields!t_cpcp.Value ="325", "Subcontract Cost", Nothing) =IIf(Fields!t_cpcp.Value ="330", "Engineering Direct Labor", Nothing) =IIf(Fields!t_cpcp.Value ="340", "Manufacturing Labor O/H", Nothing) =IIf(Fields!t_cpcp.Value ="345", "Engineering Labor O/H", Nothing) =IIf(Fields!t_cpcp.Value ="350", "Material O/H", Nothing) =IIf(Fields!t_cpcp.Value ="355", "Labor O

How to pass multiple values to a multivalued parameter in SSRS

僤鯓⒐⒋嵵緔 提交于 2019-12-05 10:27:19
I will try to explain the issue as best as I can by oversimplifying the report structure. Report one contains 1 group called ResourceCenter and then one line of totals under it. The totals are actually a group but the grouping is done in SQL and are presented in a detail group. The report looks something like this: Report 1 ResourceCenter 1 Total1 11 Total2 4 Total3 8 ResourceCenter2 Total1 12 Total2 11 Total3 6 From this report, I need to drill through to another report that has a bunch of multi-valued parameters. For the drillthrough, I am able to use single values for everything except for

Avoid Windows Login Prompt While Accessing Report Server

孤街浪徒 提交于 2019-12-05 10:24:51
We are using Microsoft Reporting Service 2008 R2 to develop reports and we are accessing these reports through an ASP application. Response.Redirect(http://<serverIp>:80/ReportServer/Pages/ReportViewer.aspx?%2fReport+Project3%2fReport1&rs:Command=Render&quotn_Id=675); When I access my report-server through my web service URL, it prompted for a windows login and password when accessed from a different machine (working fine if I provide the Credentials), but it is working fine in the local machine. What configuration do I need to adopt to get rid of this? Looks like you need to change the

How to open URL in SSRS report in webpart to new window

。_饼干妹妹 提交于 2019-12-05 09:12:06
I have created a report that I will embed in Sharepoint 2007 via a webpart using a report viewer. This works well and looks rather nice, however in the report I have a text field whose action is "Go To URL". When I click on the link within the webpart the link goes to the URL but it opens the URL within the webpart. Kind of ugly. There doesnt seem to be any additional capabilities/properties of the text box in the report other than setting the URL. How can I make the link/webpart open the URL in a new tab or window? Other than telling the user to right click the link and "Open in a new tab"...

SSRS default parameter values in subscription

谁都会走 提交于 2019-12-05 09:10:14
问题 I have a report that has two required date parameters which the user enters. I want to create a subscription that runs on Friday that pulls for the previous week's Sunday through Saturday period. So for example, for this coming Friday, the subscription would pull for Jan 29 - Feb 4. I've tried =Now(), =Today(), @ExecutionTime and then subtracting the number of days but all I get is errors. Is this possible to do? I did see this link but I wonder if there's a better way. http://www

If value = null then “ ” else value SSRS EXPRESSION issues

放肆的年华 提交于 2019-12-05 07:51:33
value 1 is a retail price decimal value 2 is the difference between 2 retail costs both are decimals =IIF(Fields!Prorated.Value is null,"",Fields!Prorated.Value)-Fields!Retail.Value fixxed !!! Fixxed ^^ =IIF(IsNothing(Fields!Prorated.Value),"",(Fields!Prorated.Value-Fields!CurrentRetailPrice.Value)/Fields!Prorated.Value) Failed ^^ this one is shown as a % difference this has not worked what would be another way around this Try this: =IIF(IsNothing(Fields!days_Prorated.Value),"",Fields!Prorated.Value-Fields!Retail.Value) For your comment try this: =IIF(IsNothing(Fields!Prorated.Value),"",

How to design bar chart on SSRS

做~自己de王妃 提交于 2019-12-05 07:41:16
问题 I want to create reports like below picture's report on SSRS. Yellow parts mean SET_PHASE , Green parts mean PROD_PHASE And my query result like this: I want to show for per line, all order and I want to show for per order, SETUP and PRODUCTION depends on duratıon time. SET_PHASE 's duration time is SET_DURATION , PROD_PHASE 's duration time is PROD_DURATION I hope so my query is clear :) Could you help me about issue? Answer: Hello Alan, Current situation I have just these data:

Getting the error “Data retrieval failed for the subreport, 'Subreport1'” while trying to preview a report from Business Intelligence Studio

梦想与她 提交于 2019-12-05 07:25:35
I know this question has been asked before, but all questions were for reports being accessed using C# or vb.net code. My problem is that i am building and accessing the report using Business Intelligence studio, I am basically trying to add a sub report for a report, and I made sure from the parameters and they are ok. However when i try to access the report containing the subreport, I get the error "Data retrieval failed for the subreport, 'Subreport1'". I also tried deleting the .data files but the same problem persisted. I faced similar issue in past and in my case below were the culprit's

Is there a report tool that allows users to create their own reports?

人盡茶涼 提交于 2019-12-05 07:22:40
I have looked around a bit but I can't find a tool that fit my needs. What I need is a tool that allows users to create their own reports preferably from a web interface where the user is able to create charts, diagrams and tables . Therefore the tool needs to be able to handle several users and restrict the users to a certain database . I have looked at Crystal Reports and SSRS and neither of them seems to support what I want or am I missing something? So, you're looking for a web-based limited version of Crystal Developer? I can't imagine a user audience that is skilled and motivated enough