views:

229

answers:

2

I have a large SSRS 2008 Server Report Project (more than 200 reports). Currently my companystrategy has been changed and we want to convert these server reports to client reports.

All of the Server reports uses Storeprocedures (or in some cases from the SQl Functions)

All of them work properly andthere is no problem

Beause of project scale it is not a good idea to create all of server reports in client again.

SO I want to check How to convert SSRS 2008 Server reports to SSRS 2008 Client Reports?

RDL to RDLC.


Note : I knowthat Client reports use Dataset And I have to create Dataset. I'm also looking for a way to generate these dataset too.but for now I'm just looking for a way to convert RDL files to RDLC files.

If there are anyApplication which can convert RDL XML to RDLC XML let me know.

Any help appriciate.

+1  A: 

1- Rename the .rdl file to use the .rdlc file extension.

2- In Visual Studio 2008, open the solution or project that will contain the report.

3- Create or add the dataset that defines the data you want to use to your projector solution. For more information, see Creating Data Sources for a Report.

4- On the Project menu, click Add Existing Item and then select the .rdlc file that you created in the first step.

5- In the project, open the form or Web page that will contain the report.

masoud ramezani
@Masoud, I know these steps, and I'm looking for a way to doall these work in one step. Like Dataset Generator or etc
Nasser Hadjloo
@nasser: you cannot find anything Like this.
masoud ramezani
@Masoud - in renaming RDL to RDLC - is there any consideration or not ?
Nasser Hadjloo
@nasser: if name of fields in your dataset have been changed, you must change the value of your controls manually.
masoud ramezani
+2  A: 

After a while I foud this Converting RDL and RDLC Files helpfull

Nasser Hadjloo