I have been asked a couple times to change the file name dynamically in SSRS 2008. Example: ReportName_201101.RDL. The 201101 represents the execution date. Can this be accomplished in SSRS 2008?
|
Unfortunately, no, it is not possible. It is another one of those features that is missing from SSRS that developers have been asking for. |
|||
|
|
|
If you mean the filename when you export the report and also happen to be pulling it from the ASP.NET ReportViewer, you can set the name through the DisplayName property.
or (if
For pretty much all other cases, Alison is right. |
|||
|
|
|
There is an MS Connect item open for this. It only has a few votes, so head over there and upvote it... |
|||
|
|
|
Another work around, is to rename the report before it runs automatically. This is a diamond in the rough. This may only work for reports that are subscriptions and not ones that users link back to. Create a table on the ReportServer database that contains a listing of all reports that you want to rename before they execute. Table Report_Rename_Listing RenameID int ItemID uniqueidentifier OriginalReportName nvarchar(350) DateType nvarchar(75) Format int DatePlusMinus real Create a stored procedure on the same server that goes out and changes all the reports in the above table.
Create a scalar function on same server that figures out just how you want to rename the report.
Then setup this up to have the stored procedure automatically run daily on your server. I have it run just after midnight every day. |
|||
|
|
|
Here is a correction to the above stored procedure so that it actual works.
|
|||
|
|