Monday 16 March 2015

Deploy SSRS Reports in AX 2012

To deploy reports from Microsoft Dynamics AX:
  1. In the AOT, expand the SSRS Reports node. 
  2. Expand the Reports node. 
  3. Right-click the report that you want to deploy, and then click Deploy Element.
To deploy reports from Microsoft Visual Studio:

In Solution Explorer, right-click the reporting project that contains the reports that you want to deploy, and then click Deploy
Reports are deployed for the neutral (invariant) language only.

Microsoft PowerShell:


open Windows PowerShell and view a list of the reports that are included with Microsoft Dynamics AX.
Open Windows PowerShell as an administrator by following these steps: 

  1. Click Start > Administrative Tools.
  2. Right-click the Microsoft Dynamics AX 2012 Management Shell option.
  3. Click Run as administrator.

Retrieve a list of the report :

Open Windows PowerShell
$reports = Get-AXReport -ReportName *
View the list of reports by entering the following command:  
$reports
Deploy the reports:
1. Type the following command to deploy the report. Ex: CustTransList


Publish-AxReport –ReportName CustTransList.
2. To deploy multiple reports.
Publish-AxReport –ReportName Sales, SalesAnalysis.

3. Deploy All the reports.
Publish-AxReport –ReportName *
4. Deploy reports to a different server
Publish-AxReport –ReportName  -ServiceAOSName  –ServiceAOSWSDLPort

No comments:

Post a Comment