Friday 6 July 2018

Stop script for service model: AOSService on machine : Application configuration sync failed. Custom action sync failed with error: 'ArgumentException:Couldn't find id for class AxPingHelper in Dynamics 365/AX

Hi,

while deploying the deployable package in sandbox through LCS I got  the below error and failed at stage 11.


Stop script for service model: AOSService on machine


7/06/2018 16:29:33: Application configuration sync failed. Custom action sync failed with error: 'ArgumentException:Couldn't find id for class AxPingHelper
   at Microsoft.Dynamics.AX.Deployment.Setup.AppOperations.RunStaticXppMethod(String className, String methodName, String methodInput, String partitionName)
   at Microsoft.Dynamics.AX.Framework.Database.Tools.LegacyCodepath.<>c__DisplayClass28_0.<RunCustomAction>b__0()
   at Microsoft.Dynamics.AX.Framework.Database.Tools.LegacyCodepath.ExecuteWithinAOS(SyncOptions syncOptions, String sqlConnectionString, IMetadataProvider metadataProvider, Func`1 func, Action`1 errorHandler)'
07/06/2018 16:29:33: The operation failed.



Reason: In my case, the problem was with the BI server login issue and the report server databases were in recovery mode.

Solution: Enabled the database access for "Local admin"  account and set the databases online. 


1 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...