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 :

Execute SSRS Report by code in Ax 2012

SANTOSH KUMAR SINGH Profile Picture SANTOSH KUMAR SINGH 1,224
I want to share to Execute SSRS Report by code in Ax 2012. You can use below code to run report manually . You can try this code if you are not able to view your report due to some security issue.

You can use controller class code to debug your report the get the cause.

 //version ax 2012 Code  
SrsReportRunController SRScontroller;
SRScontroller= new SrsReportRunController();
SRScontroller.parmReportName(‘TestReport.ReportDesign1′);
SRScontroller.runReport();


This was originally posted here.

Comments

*This post is locked for comments