Hello Friends,
I want to use reports in my website. I know reporting services of SQL Server and Navision RTC but I want to use RTC reports those are already designed by the Microsoft.
I am able to view the designed the report design in Visual Studio but I am not able to view this report into my own website using the MicrosoftReportViewer control.
Kindly give me solution.
Clearly tell me whether I am on the correct track or not.
And what are the other ways to display(RTC reports) into browser and how?
Regards,
Pravin
0
Comments
http://blogs.msdn.com/nav-reporting/arc ... rvice.aspx
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.
You could write a sql statement that would generate the XML File. I believe in RTC when you run the report you can hit Ctrl+Shif+F12 to see the source xml structure.
So if those two things are provided to reporting services, the data source and the RDL, reporting services could be used to run the reports.
It won't run the business logic.
I know I'm simplifying this.
Biggest problem is the part because the business logic generates the XML with data... and to simulate this, best is to run the report through WebService... 8)
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.
I would like to generate report that works same as RTC report which is having parameters for filtration.
Regards,
Pravin
Simple example:
AL Codeunit function:
PrintReportWebService(Text[50] customerNo)
begin
rec.SetFilter(No, customerNo);
Report.SaveAsPdf(111,'c:\somewhere.pdf', rec);
// and all the other stuff you need
end;
Regards,
Claus
I'm blogging here:http://mibuso.com/blogs/clausl and used to blog here: http://blogs.msdn.com/nav
I'm also offering RDLC Report Training, ping me if you are interested. Thanks to the 700 NAV developers that have now already been at my training. You know you can always call if you have any RDLC report issues :-)