Thursday 23 October 2014

Error while setting server report parameters. Error message: The item '/DynamicsAX/*********************' cannot be found. (rsItemNotFound)

Some time we get the below error while opening reports in axapta.

Reason : Reports are not deployed

Solution : To deploy reports.

Here i'm sharing steps how to deploy reports in axapta 2012


 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.


-> paste below command and press enter .Takes 10-25 minutes to deploy reports.

Deploy All Reports :

Publish-AXReport –ReportName *


Deploy a Specific Report :

Publish-AXReport -ReportName Vend


@ Rahul Talasila

No comments:

Post a Comment

Adding a newline into a string in C# and X++

Below is the sample code we can use for  adding a newline after every occurrence of "@" symbol in the string in C#   using System...