Skip to main content

Posts

Showing posts from September, 2015

Posting Error in AR Module in Ax 2012 for customer Payment

Following Error on Posting .. Solution: This is because the Method Of Payment is PDC in your case and when making customer payments using PDC, click the Postdated checks tab on the customer payment journal tab and enter the PDC details there. In the Maturity date field, enter the future date when the postdated check is due for payment and that will solve your issue.

Error code 110-Concurrent number of AOS for this application Exceeds the licensed number in axapta service

Problem: If you are facing Error code 110-"Concurrent number of AOS for this application Exceeds the licensed number" in axapta service  starting then you can apply below solution. Solution: You can go to sql server where you database attached. select the database open query editor then find the record from table dbo.sysserversessions  where status is active. You need to update that status to inactive it means set the value to zero. like this. update dbo.sysserversessions set status = 0 where status = 1 I hope your problem will be resolve by this.