Skip to main content

Posts

Top 10 ERP Providers in the International Market

These are list for Top 10 ERP Providers in the Market.

Error : A currency to convert from is required to retrieve exchange rate information MSDAX

If you are getting error " A currency to convert from is required to retrieve exchange rate information " on posting statement in Retail then following suggestion can be your solution. It can be resolve you need to check tables-RetailTransactionSalesTrans -currency may be missing in table-RetailTransactionSalesTrans from the currency column .

Installation Steps for Enterprise portal in MSD Axapta 2009,4.0

Following are Installation Steps for Enterprise portal in Axapta 2009/4.0. 1. Installation of .Net framework 2.0 and 3.0. 2. Installation of Client. 3. Installation of Business connector. 4. Installation of Enterprise portal server from Ax Server setup. 5. Installation of Sharepoint 3.0 administration. 6. Run Sharepoint product and technology wizard by using default selection. 7. After wizard completion run configuration wizard from ax (Administrator->setup->Internet->Configuration wizard->then run Manage deployment) 8. Create or register EP Site. 9. If site not created successfully then try with new name which is not used previously. 1. After that site will show in Ax client you can open it.

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);