I have not been able to find info on how to do this.
I want to be able to group reports in subfolders on the report server.
i.e. Accounting in one, sales reports in another.
Does anyone know how to do this using rss scripts?The PublishSampleReports.rss script in C:\Program Files\Microsoft SQL
Server\90\Samples\Reporting Services\Script Samples should get you started.
To create the folders, you need to call the CreateFolder API. For easier
testing, test the APIs in a VB.NET console app and, when everything is
ready, migrate the as a script.
If you are fortunate to have SQL Server 2005, the Management Studio can
generate the starting script for you. For example, right-click on the Home
folder and choose New Folder. Name the new folder and choose the Script
button. The resulting script should look like:
Public Overridable Sub Main()
CreateFolder
End Sub
Private Sub CreateFolder()
Dim Folder As String = "Test"
Dim Parent As String = "/"
Dim Properties(-1) As Microsoft.SqlServer.ReportingServices2005.[Property]
RS.CreateFolder(Folder, Parent, Properties)
End Sub
HTH,
---
Teo Lachev, MVP, MCSD, MCT
"Microsoft Reporting Services in Action"
"Applied Microsoft Analysis Services 2005"
Home page and blog: http://www.prologika.com/
---
"patuww" <patuww@.yahoo.com> wrote in message
news:1132156524.312113.221860@.g49g2000cwa.googlegroups.com...
>I have not been able to find info on how to do this.
> I want to be able to group reports in subfolders on the report server.
> i.e. Accounting in one, sales reports in another.
> Does anyone know how to do this using rss scripts?
>
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment