Skip to main content

Posts

Link for Case management in Ax 2012

Learn all about how you can use case management for Customer Service through sales and Marketing, purchase and sales, Human Resource, collections management and Auditing in AX2012. Read more now! For more such interesting blog posts Subscribe this blog now. http://blog.systemsadvisers.com/item/case-management-in-ax2012.html

Copy record from table in axapta 2012

To Copy record from table in axapta 2012 you can get help from following code. Lets say we want to copy customer c00001 and want new record as D000002 customer account then just you need play with table object and find method. CustTable CustTable1; CustTable CustTable2; CustTable1 = CustTable::find('C00001'); ttsBegin; CustTable2.data(CustTable1); CustTable2.CustTableId = 'D000002'; if (!CustTable2.validateWrite()) { throw Exception::Error; } CustTable2.insert(); ttsCommit;

Error on import data into the table ledgerJournalTrans using Excel add-in in ax 2012

In AX2012, while trying to import data into the table ledgerJournalTrans using Excel add-in, If you are  getting this error? Then you can try following.You have to specify the replacement key on the foreign key tables of LedgerJournalTrans, basically Aif/web service displays the user friend values to the user, so it needs a replacement key that replace the foreign key (recId) to user friendly columns. Replacement key (pointing to an index, it can be equal to a clustered index)is a key that have columns identifying the unique record Belows tables should be modified to set the Replacement key property in order to resolve this error VendTrans CustTrans Tax1099BoxDetail ReasonTableRef VendBankAccount CustBankAccount BudgetSource

ERP Comparison

ERP Comparison Ax 2012,SAP and Oracle  

Creating and customizing Cubes in ax 2012

You can get step by step information for Creating cubes in Ax 2012 . http://dynamicsaxforum.blogspot.com/2013/07/creating-cubes-ax-2012.html#!/2013/07/creating-cubes-ax-2012.html Customizing cubes http://dynamicsaxforum.blogspot.com/2013/06/customize-cubes-ax-2012.html#!/2013/06/customize-cubes-ax-2012.html

Commissions, setup and calculations in AX 2012

This is interesting post to read all about Commissions, setup and calculations in AX 2012 . Commissions in AX2012 have been the Part of distribution and trade, commission is calculated for the sales person at every Sales order level based on the percentage of revenue or contribution Margin. To read the post click on link below http://blog.systemsadvisers.com/item/commissions-setup-and-calculations-in-ax2012.html

AX 2012 reporting extension Error solution

If you are trying to install AX2012 reporting extension on SQL 2012 and facing following error . This problem may occur  due to AX is reading the server name wrongly and You need to refreshed the configuration and it will work fine.