web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :

Call SSRS Report through controller class in ax 2012

SANTOSH KUMAR SINGH Profile Picture SANTOSH KUMAR SINGH 1,224
To Call SSRS Report through controller class  Go to main method in controller class and write below code to call the report.

  SSRSRPTController   controller;  
controller = new SSRSRPTController();
controller.parmArgs(args);
controller.parmReportName(ssrsReportStr(TestReport, report));
controller.parmShowDialog(true);
controller.startOperation()

This was originally posted here.

Comments

*This post is locked for comments