Showing posts with label Deploy Dynamics AX 2012 SSRS report through Powershell. Show all posts
Showing posts with label Deploy Dynamics AX 2012 SSRS report through Powershell. Show all posts

Tuesday, 4 August 2015

Deploy Dynamics AX 2012 SSRS report through Powershell

Deploy Dynamics Ax 2012 SSRS report though WindiowsPowershell. It is very easy.

Let's have a look.

Press- Window + R > type powershell > enter

To deploy a specific report, enter the name of the report. For example, to deploy the SalesInvoice report, enter the following command:
Publish-AXReport -ReportName SalesInvoice

To deploy multiple report - enter the following command
Publish-AXReport -ReportName SalesInvoice , PurchaseInvoice

To deploy all report - enter the following command
Publish-AXReport -ReportName *

Thank You!
Atul Kumar

Import General journal from excel in D365 F&O

 Hi Guys, Import General journal from excel in D365 F&O Code:  using System.IO; using OfficeOpenXml; using OfficeOpenXml.ExcelPackage; u...