Skip to main content

Posts

How to Get Dimension value by code in ax 2012

MSDN Help for Dimension attribute value. http://msdn.microsoft.com/en-us/library/dimensionattributevalue.aspx Default dimension storage in ax 2012 http://blogs.bojensen.eu/?p=4671 Getting Individual Dimension Combination Values–Dimension Storage class  in Ax 2012 http://sumitsaxfactor.wordpress.com/2011/12/16/getting-individual-dimension-combination-valuesdimension-storage-class-ax-2012/

Question and answer on firewall and other application integration in ax 2012

Question :What port would you need to open on the firewall for the Application Object Server (AOS) function in Microsoft Dynamics AX 2012? Answer:You would need to open TCP Port 2712. Question:If The company runs a Microsoft Dynamics AX 2012 system.You plan integrate other applications with the Microsoft Dynamics AX 2012 system.What type of account should you use? Answer:You should use a .NET Business Connector Proxy account.

Question on Implementation with .net Business connetor and EP, a Help Server and a Synchronization proxy in ax 2012

You need to plan the server hardware and software required for the Microsoft Dynamics AX 2012 implementation. Your planned implementation will include a .NET Business Connector, an Enterprise Portal, a Help Server and a Synchronization proxy. Which components must run on a 64-bit operating system? Answer.   Enterprise Portal. Help Server. Synchronization proxy.

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