0
votes
2answers
54 views

SSRS data-driven subscriptions saving pdf file on the parameter value passed

I have a SSRS 2008 R2 report, with a parameter employeeID. When we do the data driven subscription I am exporting the report into a PDF file. The PDF is saved/generated as reportname.pdf by ...
0
votes
2answers
68 views

SSRS 2008 two column report only shows data on the left column

I am creating a new report that needs to show data in two columns. I did the following: Report Properties: added the second column Insert a List control from the toolbox Insert a rectangle inside ...
0
votes
1answer
107 views

VB Function to return records based on a date parameter & date field OR another date field (Visual Studio 2008, Report Builder 3.0, SharePoint Lists)

Another question sourced from this tricky environment and my inexperience. It seems like VB Functions are the only way I can deliver on some of these report requirements. I have a situation where a ...
0
votes
1answer
225 views

Using Visual Studio 2008 with Report Builder 3.0 - How to add a custom VB function to calculate a date 90 days before the date in another field

This is my first question on Stack though I have had many answered here 8-) My employer is using SQL Server Business Intelligence Development Studio with Visual Studio 2008 and Report Builder 3.0 to ...
0
votes
1answer
154 views

Text box Action to Jump URL is not working

I have one ssrs 2008 report project, In this i have one column for displaying one link to connect the form. For that I have used Action property of the textbox. And I Appended my expression like this: ...
0
votes
0answers
215 views

How do I add SSRS toolbox items to the Toolbox in Visual Studio 2008?

I'm working on integrating ssrs reports into a website. I made the reports in VS-2008 , however i need to integrate into 2010.. Well I am stuck- i'm having a hard time just putting the Reporting ...
2
votes
1answer
355 views

Changes to parameter not showing on Report Server after deployment

I have 7 parameters (3 multi select of string, 1 DateTime, 3 string values) in my SSRS 2008 report, and I have set all the parameters as null in the default value. It's working fine in my preview ...
1
vote
1answer
61 views

Link from textbox report to another report(not sub report)

I have to keep a link in one of the textbox from where it has To be redirected to another report(Not Sub report). The Parameter of The report is the value of the textbox itself. But when I tried it ...
0
votes
0answers
357 views

Deploy SSRS Reports on Remote Server [closed]

I have SSRS reports created using VS2008. I need to deploy my reports on remote server. The Remote server is installed with SSRS 2008 R2. I am able to deploy my reports in my local report server(SSRS ...
0
votes
1answer
208 views

Report: Incorrect Column Sum Total

I have created a tabular report that has a couple of drilldowns that are subtotaled at the top of each table group via the following expression Code: =Sum(Fields!StandardTime.Value) Data: ...
1
vote
0answers
54 views

For ssrs vs2008 is there a better oracle driver, wrapper around current driver or vs2008 extention which would remove the { oj syntax?

Further to my question on stopping vs2008 adding { oj, which now seems Impossible. VS2008 SSRS using to query Oracle: How do I stop {oj} for outer Joins? I was wondering if someone has written a ...
1
vote
1answer
82 views

report dependencies in SSRS [closed]

Is there an automatic way to track reports and their dependencies for SSRS? What I want is a map/tree where I can see whether a report depends on a other report or subreport. So far we did this by ...
0
votes
1answer
551 views

The attempt to connect to the report server failed. Check your connection information and that the report server is a compatible version

I am getting this error when i am trying to call reports from application. My reports is working properly on report server. I am using below code: Private Sub ShowJobTravelerReport(ByVal ...
0
votes
1answer
260 views

Report viewer gets a 401 Unauthorized

In a nutshell, the problem is that I get a 401 Unauthorized error with the following stacktrace when I try to view the report embedded in a report viewer. at ...
0
votes
1answer
478 views

Deploying report shows an error

I'm using SSRS 2008 R2 for my reports. I have been working in my local environment and there was no problem with deploying to the local server. Now I want to deploy all the reports to live server but ...
1
vote
0answers
191 views

Visual Studio 2008 crashing after converting 2005 SSRS Project

We recently migrated to SharePoint 2010 and I am updating a few reports. The .rdl files were developed in Visual Studio 2005. I am converting them to VS 2008 and deploying them to the new SP site. ...
0
votes
1answer
102 views

SSRS projects and Visual Studio versioning problems

I'm trying to edit some SSRS 2008 reports from TFS, but having all kinds of issues. I have Visual Studio 2008 installed on a VM I created for the sole purpose of editing the reports within these ...
1
vote
1answer
84 views

How to customize the header in my report?

Q : I want to make the header in my report like this but I don't know how to do this in right way. They are three columns with a general header (GPA) and special header for each one which its ...
3
votes
4answers
2k views

SSRS 2008 Hidden Columns Should NOT Export to CSV

When I hide columns in SSRS they still appear in the CSV export. I have to hide columns, not the entire tablix. This is what I have tried already: The filters in the tablix hide rows not columns. ...
-2
votes
1answer
85 views

SQL Default Values trouble

This is a SQL 2008 Reporting Services Reports question! I have a parameter called Doors that depends on another parameter called City in it's SELECT statement. If you have one City selected, it will ...
1
vote
1answer
160 views

SSRS2008 - SELECT in a CASE…WHEN…THEN

I am using a hidden internal Parameter (@DoorHelper) to check if another parameter I am using(@Door) contains a special value I use to represent 'global'('9999') and return all Doors in that case. ...
0
votes
1answer
36 views

Help with this sql syntax

SELECT [ID] + ' - ' + CAST([OfficeID] as char(5)) AS [ZoneID] , [Name] FROM [dbo].[ZoneByOffice] WHERE ([OfficeID] IN (@Office)) AND (('0003' in @Activity) OR ('0007' in @Activity)) ORDER BY [Name] ...
1
vote
1answer
470 views

Show/Hide Parameter Values based on Selected Value of another Parameter. Possible?

I'm trying to find out whether it is possible to engineer a SSRS report where the array of selectable values for a Parameter changes depending on the selected value(s) of another parameter. Let's say ...
1
vote
0answers
479 views

“refresh fields” not working for MDX query in SSRS 2008 dataset

I've tested the query in MDX Studio 0.4.10 (works fine) and updated the query used in the dataset, however, the resultset has not updated with the new column/field showing in the 'report data' pane, ...
1
vote
3answers
9k views

SSRS the definition of the report is invalid

Hello I'm trying to deploy my report to our reporting server using BIDS, but for some reason i'm getting some stupid ambiguous message! Typical Microsoft... tried googling around but not been able to ...
0
votes
2answers
325 views

Sql Server report parameter resets back to single selection

In one of the reports if I do a '(Select All)' on the multi select parameter and then run the report or select any other dropdown parameter it resets the last dropdown parameter to a single selection. ...
0
votes
1answer
47 views

Sql Server Reporting Service Problem

I have a assignment question. How to integrate Sql Server Reporting Service (SSRS) with visual studio? i know that when you have installed BI tools it's possible to create SSRS reports as a Visual ...
4
votes
1answer
1k views

Reduced printing functionality in SSRS BIDS 2008 R2 “Preview” tab or bug?

Problem: Printing from within BIDS 2008 R2 "Preview" tab hangs and must have the process ended in task manager. Facts I can set the report as StartItem under Debug Configuration Properties for the ...
11
votes
4answers
7k views

Visual Studio for SSRS 2008 - How to organize reports into subfolders in Solution Explorer?

Right now I have a project called reports with several reports. In solution explorer it looks like this: Shared Data Sources -- DEV Reports -- Report1 -- Report2 -- Report3 I want to make it ...
0
votes
2answers
1k views

How do you add a listbox as an input parameter UI element in SSRS 2008?

I have to add a listbox/dropdownlist to a report in a Visual Studio Business Intelligence project, allowing users to filter a DataSet by the Id of the entity chosen in the listbox. I heard this was ...
0
votes
0answers
589 views

How to create MSI package for SSRS solution in VS2008

I created the Reports in SSRS and i deployed in my local Report Server. Now one of my client wants that solution in their server(Development) in a Package. But i have no idea how to create MSI ...
2
votes
1answer
6k views

Can't Deploy or Upload Large SSRS 2008 Report from VS or IE

So far in this project I have two reports in VS2008/BIDS. The first one contains 1 tablix and is about 100k. The second one contains 3 tablixes (tablices?) and is about 257k. I can successfully ...
0
votes
1answer
1k views

ReportingServices: Excel export How to force new sheet?

We have report with cover page (disclaimer) normally printed on separate page and on the other pages main data. Works well when printing, but when exporting the same report to Excel cover page and ...
1
vote
1answer
603 views

What installer contains the Microsoft Business Intelligence Development Studio 2008?

My installation of Visual Studio Team System 2008 (Development Edition) does not have it. I can't find it in the SQL Server Enterprise 2008 installer either.
2
votes
2answers
5k views

How to convert a RDL to RDLC file with a different schema?

I'm using Sql Server Reporting Services (SSRS) 2008 to create RDL files, but also need to create a RDLC file. The problem is that SSRS 2008 uses a 2008 schema, while Visual Studio 2008 uses the 2005 ...
2
votes
4answers
3k views

How do I specify a default font and size for a control in Visual Studio?

I am creating reports in visual studio and am looking for a way to specify a default font and size apply to a textbox each time I drop one onto the designer. Update: This is not winforms or webforms ...