Posts

AX 2012 R3: Cannot edit a record in Purchase order - update table (PurchParmTable).

Image
AX 2012 R3: Cannot edit a record in Purchase order - update table (PurchParmTable). Error: Cannot edit a record in Purchase order - update table (PurchParmTable). An update conflict occurred due to another user process deleting the record or changing one or more fields in the record. Scenarios: This happen when, I try to cancel Purchase Order Confirmation or GRN in AX 2012 R3. Anyone encounter this before? Appreciated can share some solutions. All the best. Ariston J.

AX 2012: The AOS server name or instance name is not correctly configured

Image
Scenario: When installing Reporting Extension in Reporting Server using Microsoft Dynamics AX 2012 R3 Installation wizard, then I got the below error. Error Details: Performing a service status check for prerequisite 'Application Object Server (AOS) Services WSDL URI accessible Error fetching services status. Reason: The AOS server name or instance name is not correctly configured Check succeeded. services check failed Solution Details 1. In "Microsoft Dynamics AX Configuration Utility". 2. Check if Connection Details in Connection Tab are valid and in correct setups. 3. Refresh Configuration to regenerate WCF configuration 4. Try to install again

Server was unable to process request. ---> Could not retrieve a valid Windows identity. ---> Access is denied.

Image
Error Name: Server was unable to process request. ---> Could not retrieve a valid Windows identity. ---> Access is denied. ******************** Error Message: (Event Viewer) The Web site http://xxxxxx/sites/DynamicsAx was not created correctly. Server was unable to process request. ---> Could not retrieve a valid Windows identity. ---> Access is denied. System.Web.Services.Protocols.SoapException    at System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage message, WebResponse response, Stream responseStream, Boolean asyncCall)    at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters)    at Microsoft.Dynamics.Framework.Deployment.Services.EPDeploymentService.CreateAxSitesAndPages(String siteUrl)    at Microsoft.Dynamics.Framework.Portal.Deployment.EPFeatureReceiver.CreateAxSiteContent(SPWeb site, Boolean isEPHomeSite)  ...

AX 2012: Get Worker Information for current user

To be able to get the Worker for the the current user in AX 2012 you can use the code below: static void getCurrentUserAssociatedWorker(Args _args) {     HcmWorker   worker =  HcmWorker::find(DirPersonUser::find(curUserId()).worker());     info(strFmt('Name: %1 ', worker.DirPerson().Name));     info(strFmt('Address: %1', worker.DirPerson().primaryAddress())); }

AX 2012: Remove Hyperlink in SSRS Reports

Image
Remove blue font color or Hyperlink in SSRS Report Sample Report Edit your SSRS  Report in Visual Studio  Go to Report Design In the Textbox you want to remove hyperlink or blue color set Expression and do similar the code below Sample TextBox Expression for Item Fields or Part Number = "" & Fields!ItemId.Value & "" Regards, Ariston J.

AX 2012 R2: An exception occurred when retrieving the field metadata

AXRDCE The AXRDCE extension caught an unexpected exception for report MyReport.Report. The error message was: An exception occurred when retrieving the field metadata for the field MyField1 in table MyTableTmp. Solution: Restart SQL Server Reporting Services References: How to restart SQL Server Reporting Services