to the SSRS server?
I see ways to get the reports in other formats (html, pdf, etc.), but not a way to get the report in a format that can later be opened with the ReportViewer component.
Thank you in advance for any help!
I see ways to get the reports in other formats (html, pdf, etc.), but not a way to get the report in a format that can later be opened with the ReportViewer component.
Thank you in advance for any help!
I see ways to get the reports in other formats (html, pdf, etc.), but not a way to get the report in a format that can later be opened with the ReportViewer component.
Thank you in advance for any help!
Server Software:
SQL Server 2000 (all sp's up to date)
SSRS 2000 (all sp's up to date)
We have an error when a report subscription is sent via email.
Our report definitions reference a key in the web.config file so that we can have a single location to reference our department's name in all reports. Our department name changes frequently as our company is bought and sold and it is difficult to manually update 700+ reports.
In report designer we have a text field with the following value expression:
=System.Configuration.ConfigurationSettings.appSettings("Department").ToString()
Our web.config looks like this:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
....extra settings truncated for brevity...
<appSettings>
<add key="Department" value="Report created by: Corporate Reporting and Analysis" />
</appSettings>
</configuration>
The reports work perfectly in every aspect accept when they are schedules to be emailed. When the email recipient receives the email (not matter what format, mhtl, pdf, etc...) the department string value is replaced with: #Error
Is this a bug with the report schedule and deilvery component? ..or is there a permission problem when accessing: System.Configuration.ConfigurationSettings.appSettings("Department").ToString() ?
Any help would be greatly appreciated.
Thank you
Well, I believe I solved the issue:
The report scheduling service is located in another folder:
C:\Program Files\Microsoft SQL Server\MSSQL\Reporting Services\ReportServer\bin\ReportingServicesService.exe
...and its configuration file is called:
ReportingServicesService.exe.config
All we had to do was modify this config file to match our web.config appSettings and "Presto!" it worked.
<configuration>
....extra settings truncated for brevity...
<appSettings>
<add key="Department" value="Report created by: Corporate Reporting and Analysis" />
</appSettings>
</configuration>
Also, remember to restart the "ReportServer" service after updating the ReportingServicesService.exe.config file in order to immediately reset the changes.
My client cannot workout how to apply diagonally aligned text on a report.
We need to apply the text on statements and invoices to alert the clients to accelerate their payment, or notify them of account issues.
Could someone please tell me where I could find the information required to do this so I can forward it to the client.
I don't know how to do this, but this concept is typically referred to as adding a "watermark". HTH your searching for an answerNone of the submit "Apply" or "OK" buttons are submitting any changes with in Report Manager. The page does not go any where when these buttons are clicked.
Is this a limitation of the Evaluation version of RS 2000?
Thanks,
Drewhttp://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=146347&SiteID=1
My Problem is
I have 2 views --> 2 Databases (2 Products) but there are same fields (Same structure)
and I have to created the report by Crystal Reports to compare the Quatity of all product in my Company
So how Can I combine them (2 views with the same recoed but not the same data)
thanks for helping me
Kate
You can try Linked Servers if your databases are on different servers or on different instances.
If they are on the same instance then you can use
select * from DatabaseName.dbo.TableName
OR
select * from DatabaseName..TableName
Eralper
I have a requirement where I need to display the total count of the population by Gender and Race (both dimensions) in one report. The layout will look something similar to …
Count1
Count2
…
Male
Female
American Indian or Alaska Native
Asian or Pacific Islander
Black, non-Hispanic
Hispanic
White, non-Hispanic
In simple SQL terms this can be achieved by UNION ALL clause,
Select Gender, Count1, Count2…From Table1 Group by Gender
UNION ALL
Select Race, Count1, Count2…From Table1 Group by Race
How can I get similar results in MDX or Reporting Service?
Thanks
In MDX you cannot mix different members in one column, so you would have to end up at a set that looked like the following:
Count1
Count2
…
Male - All Races
Female - All Races
All Genders - American Indian or Alaska Native
All Genders -Asian or Pacific Islander
All Genders -Black, non-Hispanic
All Genders - Hispanic
All Genders - White, non-Hispanic
Which you would do with a query like:
SELECT {Measures.Count1, Measures.Count2} ON COLUMNS
{
[Gender].[Gender].[Gender].Members * {[Race].[Race].[All] }
,{[Gender].[Gender].[All]} * [Race].[Race].[Race].Members
} ON ROWS
FROM [Cube]
example : Report name : Testreport
Exported file should be : Testingreport-November-22-2007.pdf
please help me in this
Thanks
suku
Quote:
Originally Posted by sukumaster
When exporting a report to another format, say excel,PDF; the file name is always set to the report name. Our client has a requirement where whenever a user exports a report to pdf, the timestamp of when the data of the report was made should be appended in the filename. Is there a way to do this in Reporting Services ?
example : Report name : Testreport
Exported file should be : Testingreport-November-22-2007.pdf
please help me in this
Thanks
suku
sql server tools,sql server