reporting-services

SSRS shows no records in report but query returns results

若如初见. 提交于 2019-12-04 05:35:45
I have a question according to SSRS. I am working with MSSQL Server management studio 2012 and BIDS Visual studio 2008 for the report design. I have a report with some multivalue parameters and a stored procedure in behind which returns the records. Now I've tried to find the problem on the parameter values passed to the stored procedure and a string split function. I looked in the SQL server profiler if the strings get passed in an unexpected form but thats not the case. I ran the exact execution code in the server as a query and got results back. but if i run the report in the preview pane

SSRS 2005 How to Print 4“ X 3” label as Portrait.. SSRS assumes Landscape

可紊 提交于 2019-12-04 05:08:10
I have a SSRS 2005 report form that is printing to a Zebra ZDesigner TLP 2844-Z label printer. The Interactive and Page sizes are set to 4" wide by 3" high. Since there is no paper orientation in SSRS, it is assuming this to be a landscape report when it should be a portrait thereby printing the labels sideways. The users are able to export to a PDF and print after adjusting the print settings, but the extra clicks to produce/print the pdf's are unacceptable. Is there a way to force the print job to print portrait or another workaround/trick to do this? Can you just set your Page width to be 3

“The report definition for report 'xxx' has not been specified.”

我们两清 提交于 2019-12-04 04:43:57
问题 I'm trying out SSRS for the first time with an ASP.Net web form. I created a local RDLC report and used a ReportViewer in the "Default" web form. Under the smart tag I chose "Choose Report" and selected the RDLC report. When I pressed f5 to run the report the following error was displayed even though I did choose the report from the smart tag. "The report definition for report 'xxx' has not been specified." Please let me know why this is not working as expected. Thanks. Coding for the report:

I want Datetime Parameter in DDMMYYYY Format in ssrs report

。_饼干妹妹 提交于 2019-12-04 04:42:53
问题 I want to change the Datetime parameter to DDMMYYYY format.its default value is MMddYYYY.when user will select date from date picker the date should be display in ddmmyyyy format. I tried all expression like =Format(Parameters!DateFrom.Value, "dd/MM/yy") =cdate(format(DateAdd("d", -61, now),"dd/MM/yyyy")) =cdate(format(DateAdd("d", -61, now),"dd/MM/yyyy")) but all doesnt work. 回答1: Necromancing. Yes, you can - sort of. First, notice that SSRS takes the date format from the language that is

How can I get SSRS and Chrome to work together?

做~自己de王妃 提交于 2019-12-04 04:36:14
Chrome is my preferred browser; I need to interact with SQL Server Reporting Services, though, and when I navigate to a report created with Report Builder (*.rdl file), in Chrome I get no contextual menu. When hovering over the report, it does "light up" (a yellow border is drawn around it) and a dropdown arrow appears in the NE corner, but clicking it does nothing whatsoever. In IE, it works just fine. However, I really don't want to use IE if I don't have to. Sharepoint has similar issues (things that can't be done in Chrome and Firefox work fine in IE). Do I just have to "bite the bullet"

Tablix header not repeating on new page, when subreport causes page break

早过忘川 提交于 2019-12-04 04:21:42
I've been fighting with SSRS for too long now on what should be a simple matter. I'm hoping someone can help me see a solution. I have a report which has a number of profiles, and each profile has a large number of data sections. The data sections (various tables and charts) are not related to each other in any way other than that they "key" back to the parent profile id. The goal (which seems simple) is to have a header on each page with the profile information, and then have the data sections (each formatted completely differently) laid out. The first problem we encountered was that for some

TFS permissions to create Team Projects in a specific collection

只愿长相守 提交于 2019-12-04 04:00:16
We have several Collections in our TFS 2010 server. This server hosts all of our TFS related services. I'd like to allow a specific programmer to create Team Projects within his dedicated collection. He belongs to the collection's TFS administrators group. When he tries to create a new Team Project, it fails with a Reporting permissions error. I understand that he also needs Reporting services permissions to create the relevant Reporting objects for the new Team Project, but I don't want him to be a full admin for the whole server's Reporting Services. Is there a way to allow him the full

MVC5 & SSRS ReportViewer - How to Implement?

这一生的挚爱 提交于 2019-12-04 03:55:40
I have spent hours trying to solve this and so far I can find MVC1, MVC2, and MVC3 based solutions but nothing about MVC5 and using SSRS and ReportViewer. Frankly, I don't know WebForms, since I joined the programming world after MVC was a big thing in the shop I work at. Enough extra backstory, I'll get to it. I have: Written a stored procedure Used the Business Intelligence Tools in VS 2013 to design my report Viewed the report in the designer and know it's good Attempted to integrate the ReportViewer into my application without success Determined it appears I need to re-execute my query

Namespace for ReportingService Class

混江龙づ霸主 提交于 2019-12-04 03:47:56
问题 I can't seem to find a clear answer as to how to import the proper namespace for ReportingService http://msdn.microsoft.com/en-us/library/aa258073(v=SQL.80).aspx. I tried to follow the instruction here http://msdn.microsoft.com/en-us/library/aa237438(v=sql.80).aspx but there is no Add Web Service option showing when I create a console application. There is a service account. Should I just use that instead? 回答1: you have a full example on how to do this from a Console Application in MSDN, here

SSRS Contains or Like Expression

核能气质少年 提交于 2019-12-04 03:40:57
I'm trying to create a calculated expression from a field in my dataset. I need to find everything that contain the word Exchange Traded from one field and in my new field have the words 'ETF 13F'. If nothing matches then it would just be blank. I have tried the Like(" Exchange Traded ") and Contains (" Exchange Traded ") functions and when running the report I get a #error in my new field. Here's what I have tried... =IIf(Fields!DESC2.Value.like("*Exchange Traded*"),"ETF_13F", false) How do I write this wildcard expression and then replace with a different text in the new calculated field?