reporting-services

SSRS Consuming WCF Service with Calling User Credentials Issue

独自空忆成欢 提交于 2019-12-22 14:54:29
问题 We currently have SSRS reports that consume WCF service data which needs to use the calling users credentials. On the service side, we use a basic binding to host the service: <binding name="TheBasicHttpBinding" maxReceivedMessageSize="50000000" transferMode="Streamed"> <readerQuotas maxArrayLength="50000000"/> <security mode="TransportCredentialOnly"> <transport clientCredentialType="Windows"/> </security> </binding> <service behaviorConfiguration="DefaultServiceBehavior" name="Web

SSRS - Look up field in dataset that is not part of report

别来无恙 提交于 2019-12-22 13:48:04
问题 I have an ID column in a table in my Reporting Services report. I want to title each page of my report based on a corresponding name field. When I try to create an expression for the group-level PageName property, I see that there is a Lookup() function in SSRS. The example given in the description looks like this: =Lookup(Fields!SaleProdId.Value, Fields!ProductID.Value, Fields!Name.Value, "Product") The problem is that these fields are presumably in the same dataset used to create the report

Deploying from BIDS to SSRS - Parameters Not Getting Updated

大兔子大兔子 提交于 2019-12-22 12:32:42
问题 I'm noticing some strange behaviors when deploying reports from BIDS to SSRS. I have a parameter that has default values, but those default values don't seem to be getting propagated to the Report Server (they are stored in Parameters field in the Catalog table). Yet when I add new parameters I could see the field is changing. It's almost like the deployment tool is ignoring certain parameters. Any thoughts? If this helps, my RDL looks like this: <ReportParameter Name="INCLUDEDFIRMS">

SSRS: Report label position dynamic

陌路散爱 提交于 2019-12-22 12:21:44
问题 I have a report which displays customer address in multiple labels. My customers use windowed envelopes for mailing. I need the address labels position to be configurable. Something like, I'll have a database table which stores the Top/Left position of each label per customer. Based on this table, I need to position the address labels on my report. I thought, it is doable by expressions, but Location property doesn't provides ability to set an expression and make the label's top and left

Automatically set up user's subscription in SSRS

荒凉一梦 提交于 2019-12-22 10:49:43
问题 I have a very simple report in SSRS that is just a table with three columns, an object name, client account, and expiration date. In my report, I include a filter by UserID to limit the data to just the logged in user's client accounts. I store the user's client accounts in a simple table with domain\alias | client account fields which is populated from a SSIS package. When a new alias | client account association is entered, I would also like to set up a subscription to the report for this

How to force a textbox to split, rather than move to a second page in SSRS 2005 (PDF Export)?

久未见 提交于 2019-12-22 10:26:56
问题 This question is a follow up to my original question, I've done a bit more reseach, i narrowed a problem down quite a bit. I've also uploaded a sample .rdl to illustrate the problem I've got the following report setup: a header (image in the body), two textboxes, and a footer. First textbox has a little bit of text, and second textbox has lots of text. Second textbox can fit on one page by itself, but won't fit on the page with my header and the first textbox. The problem is that for some

SSRS 2008 multi-line data displaying as one line in report

回眸只為那壹抹淺笑 提交于 2019-12-22 10:07:25
问题 I have a report that is returning a one data field to a tablix control field. The data field contains multi-line information in the database. Example below. In SQL Server, "Dan Chief - Ceo - Indiana Office" "Dan Chief - " & vbcrlf & "Ceo" & " - Indiana Office" The vbcrlf's don't display in SQL Server but I have confirmed they are present by using instr() in SSRS. I want the data to display like this. I can remove the hyphens and spaces. Dan Chief Ceo Indiana Office But in the SSRS report it

Download SSRS Report and save in specific location (C#) (Unauthorized)

喜欢而已 提交于 2019-12-22 09:59:35
问题 Question I am attempting to download an SSRS report via its URL into a data buffer (byte array), so therefore I can then save it in a particular folder, with a name of my choosing. I am open to suggestions of different ways of doing this if required. The Issue However I am constantly getting the below error (401) Unauthorized , no matter which credentials I enter: An exception of type 'System.Net.WebException' occurred in System.dll but was not handled in user code Additional information: The

Localization of Reporting Services-Reports (.rdl / .rdlc-Files)

强颜欢笑 提交于 2019-12-22 09:43:27
问题 i need to localize a Reporting Services-report (.rdlc) and i would like to do it using a ressource-file (.resx). I found pages like this and that and they use custom code to achieve their target. But pages like Setting the Report Language Parameter in a URL give me the impression that localization in reports is possible without custom code. So, it is possible to localize a Reporting Services-report without custom code ? If so, is there a tutorial that explains how it's done? 回答1: What in the

isnull in SSRS expressions

旧时模样 提交于 2019-12-22 09:35:45
问题 How to use this formula in ssrs-expression =NOT(isnull({Command.AAID})) or NOT(isnull({Command.HDomain})) or NOT(isnull({Command.Adomain})) Thanks. 回答1: I think what you're trying to do is display data based on whether or not a field has data in it or not? You can always use an IIF statement with ISNOTHING. See below for the expression. =IIf(IsNothing(Field!Whatever),0,Field!Whatever) If that doesn't answer your question, let me know. 回答2: So to convert Crystal formula to SSRS-Expression ,