reportingservices-2005

Freeze column header while scrolling

白昼怎懂夜的黑 提交于 2019-12-06 05:29:50
I want freeze all column headers while scrolling down. Also, I want to freeze the first four columns with data when I scroll vertically. For the second part, I used the FIXED data property for the first four columns. It's working perfectly. How do I freeze all column headers when I scroll downwards? I am using SSRS 2005. Rana_kgec In order to make the column header row repeat on each page, please refer to the steps below: Select the Tablix. In the grouping pane, click on the small triangle and select "Advanced Mode" to show static members. In the row group hierarchy, select the corresponding

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

南笙酒味 提交于 2019-12-06 02:47:22
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 reason, the second textbox in the report is unaware of other contents of that same report, and as long as

Howto ignore SSL certificate error in WebService request?

心已入冬 提交于 2019-12-05 22:11:13
Question: I have written a console program that uses the SQL server 2005 web service to upload reports to SQL Server 2005 reporting service (so that I don't have to upload 100 reports by hand everytime). It works fine locally, and remotely. But now, the problem is one server uses SSL so rs.Url = "https://hostname/ReportServer/reportservice2005.asmx the problem now is the SSL certificate is invalid... I can access the reportserver from the browser however by ignoring this error. How can I do that with the webservice? ' http://msdn.microsoft.com/en-us/library/aa225813(SQL.80).aspx ' COR

RowNumber for group in SSRS 2005

有些话、适合烂在心里 提交于 2019-12-05 16:12:28
问题 I have a table in a SSRS report that is displaying only a group, not the table details. I want to find out the row number for the items that are being displayed so that I can use color banding. I tried using "Rowcount(Nothing)", but instead I get the row number of the detail table. My underlying data is something like ROwId Team Fan 1 Yankees John 2 Yankees Russ 3 Red Socks Mark 4 Red Socks Mary ... 8 Orioles Elliot ... 29 Dodgers Jim ... 43 Giants Harry My table showing only the groups looks

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

Using Powershell to set user permissions in Reporting Services

天大地大妈咪最大 提交于 2019-12-05 03:03:59
问题 I'm asking this because i'm a n00b when it comes to Powershell. How do i use Powershell to add a particular domain user or group to a specific reporting role in SSRS2005 (say the Content Manager or Browser role)? Is there a simple one or two line script to achieve it? Thanks! Note: this is definately programming related (not server admin), but i am also going to ask this on SF. 回答1: Sorry, it isn't just one or two lines but you could easily wrap the following sample code into a reusable

How to add an image to an SSRS report with a dynamic url?

五迷三道 提交于 2019-12-04 23:12:04
I'm trying to add an image to a report. The image src url is an IHttpHandler that takes a few query string parameters. Here's an example: <img src="Image.ashx?item=1234567890&lot=asdf&width=50" alt=""/> I added an Image to a cell and then set Source to External and Value to the following expression: ="Image.ashx?item="+Fields!ItemID.Value+"&lot="+Fields!LotID.Value+"&width=50" But when I view the report, it renders the image html as: <IMG SRC="" /> What am I missing? Update Even if I set Value to "image.jpg" it still renders an empty src attribute. I'm not sure if it makes a difference, but I

Detecting NULL dates and showing empty string in SSRS

最后都变了- 提交于 2019-12-04 23:11:48
I'm trying to format some cells in a Reporting Services report that will contain DateTime? values - or not. If the underlying data has a NULL for that DateTime? , I'd like to show nothing (empty cell) - and if that data source contains a value, I'd like to show the date in short date format ( dd.MM.yyyy in my locale). So I tried to put this formula into the relevant SSRS cells =FormatDateTime(Fields!DatumBSE.Value, 2) but now I'm getting 01.01.0001 for all NULL dates.... I can't seem to wrap my head around how to do this in a SSRS (VB) formula.... I tried using IsNothing() but that doesn't

Dimension Security in SSAS & SSRS

北城余情 提交于 2019-12-04 20:46:22
I am stuck with a problem of implementing security at dimension level in SSAS. Here is what I did - 1. Defined a role in SSAS and applied security at dimension level (Unchecking cube dimensions that I don't want this role to access and setting Allowed & denied Sets). 2. Tested using Cube Browser, it worked fine. 3. Tested using SSRS, no change, I was still able to query the dimensions & get results that I don't want. Question - Is it possible to propagate the security I define at Cube level to SSRS? I would like to believe yes it is. If yes then here is what I need - Users will logon to the

Bulk uploading images to SSRS

泪湿孤枕 提交于 2019-12-04 19:13:05
We have used the excellent RSBuild for bulk uploading reports to SQL Server Reporting Services (SSRS) but I find no way to bulk upload images. Using the Report Manager to upload one image at a time is silly. The difficulty is that the SQL Server Reporting web service that RSBuild uses doesn't support image uploads. Is there a way to bulk upload images to SSRS in some other fashion? You will need to upload one image manually first so you read the contents of the Catalog table for the image row it inserted in the ReportServer database and use the ParentId, PolicyId and CreatedById and