Skip to main content

Posts

Error while starting MSD Ax 2009 Instance

If you are facing below error while  while starting Ax 2009 Instance. "Concurrent number of AOS for this application Exceeds the licensed number". It means you have single AOS license but You have installed multiple AOS and trying to access using load balancing. You can solve your error following way. Open sql query editor and do following steps SELECT * FROM dbo.SysServerSessions WHERE Status = 1; Change the Status value by using following  update query: UPDATE  dbo.SysServerSessions SET Status = 0 WHERE Status = 1;

Workflow Known Error -Due date exceeded in MSD Ax 2012

This is Workflow Known Error -Due date exceeded in Ax 2012 but solution still not found on searching on internet. X++ Exception: invalid tracking submission expected context Workflow and expected type Submission actual context Workflow and actual type Fault. at SysWorkflow-faultWorkflowInstance SysWorkflow-internalFault SysWorkflow-fault WorkflowTrackingTable-saveTracking SysWorkflowWorkItem-escalate X++ Exception: invalid tracking submission expected context Workflow and expected type Submission actual context WorkItem and actual type DueDateExceeded. at WorkflowTrackingTable-saveTracking SysWorkflowWorkItem-escalate Could any one give right comment and answer I tried, IISReset,Full compilation of CIL and application,Restart AOS Services and Server but problem not resolved. Workflow stop working after this error.

Get Database information in MSD Axapta

1. Click Area Page node: Administration -> Inquiries -> Database -> Database information.Switch to the General tab on the Database information form.  2. Switch to the System variables tab on the Database information form. to get System variables  on form. 3. Switch to the ODBC tab on the Database information form to get ODBC  Details .

Post Sales Order from business connector with CSharp in MSD axapta

This code can help you AxaptaRecord AXSalesTable = ax.CreateAxaptaRecord("SalesTable"); AXSalesTable = ax.CallStaticRecordMethod("SalesTable", "find", SalesId) as AxaptaRecord; AxaptaObject axSalesFormLetter_Invoice = ax.CreateAxaptaObject("SalesFormLetter_Invoice"); axSalesFormLetter_Invoice.Call("new"); axSalesFormLetter_Invoice.Call("update", AXSalesTable);

Number sequence cleanup activity in MSD Axapta

  1. Click Navigation Pane node: Basic -> Setup -> Number sequences -> Number sequences. 2. Select the number sequence line. 3. To perform cleanup of number sequence of current selection Click the Clean up -> Click on Current menu button. Form name: NumberSequenceCleanUp 4. To perform cleanup of number sequence of current selection Click the Clean up -> Click on All menu button. 5. Click the OK button.

How to Change User logon Ideal time in MSD Axapta

To Change User logon Ideal time in Axapta you can choose below option. 1. Click Area Page node: Administration -> Users. 2. Click the User options button. 3. Change Automatic shutdown from '0' to '10 it means if user is ideal for 10 min then ax application will close after that.

Table re index Generate SQL scripts truncate option from MSD axapta

1. Click Navigation Pane node: Administration -> Periodic -> SQL administration. Form name: SQL administration 2. Click the Table actions -> Browse table menu button. Form name: Table browser: CustTable 3. Close the Table browser: CustTable form. 4. Click the Index actions -> Reindex menu button. 5. Click the Generate SQL scripts -> .... for creating tables menu button. Same as you can check other option like truncate table,check synchronization etc.