To deploy reports from Microsoft Dynamics AX:
- In the AOT, expand the SSRS Reports node.
- Expand the Reports node.
- 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:
- Click Start > Administrative Tools.
- Right-click the Microsoft Dynamics AX 2012 Management Shell option.
- 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