Skip to main content

Posts

Showing posts with the label SrsReportRunController

Calling a SSRS Report from x++ in Ax 2012

For Calling a SSRS Report from x++ in Ax 2012 you can try following code hints. You can use SrsReportRunController  class to call SSRS Report. SrsReportRunController controller; controller = new SrsReportRunController(); controller.parmReportName(ssrsReportStr(TestReport, Detail)); controller.startOperation();