Skip to main content

Posts

Showing posts from July, 2013

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.

Import Error during Data Migration Framework in Ax 2012

If  you are facing Import Error during Data Migration Framework  in Ax 2012 like following image. You have installed Data Migration Framework (Beta 2) then You are facing this error when You try to import DMF ax model by PowerShell. Then you can solve It by changing the folder name because by default the folder name contain word (Beta) between brackets,You need to remove the brackets and correct the path in PowerShell.

AOT Components preview in dynamics Axapta 2012

Following are AOT Components preview in Microsoft dynamics Axapta 2012, In Ax 2012 Parts,Visual Studio projects etc are new component added in AOT. You can see lot of changes in form design but base method and code are same as ax 2009.  

Records not showing on form from Employee table after importing in Ax 2012

If you are  using dynamics ax 2012 r2 then you may face problem is there are no records of employees/workers/contractors in you hr module but record are in the tables same when you create a new record its visible only in the tables. Solution: The records in your tables are most probably imported, but when you did so you forgot to import all related tables like dirperson, dirparty employment and so on Check all tables that are in hcmworker form datasource and make sure they contain appropriate data with relations to hcmworker table . Same way if you are facing problem in other module like item master or customer table then you need to import data for all master data of related tables,