Skip to main content

Posts

ERD Account Payable and Account Receivable in ax 2012

Ax 2012 Error Resolved-One or more pending invoices cannot be displayed because they are in use

If you are facing Error-One or more pending invoices cannot be displayed because they are in use like below screen. Then you can try following solution. Solution: go to /Accounts payable/Common/Vendor invoices/Pending vendor invoices > selected the invoice number and then>> delete then try to delete again. You can get Invoice from below path also. Accounts Payable / Inquiries/History / Invoices

Index Tips for Performance improvement in Axapta

There are some Index Tips for Performance improvement in Axapta. You need to take care on index creation. 1. To create Index on table you can go to particular table from AOT then go Index then right click then create new Index. You should apply naming convention for index as per column added in to index. 2. You need to maintain sequence of column in index as suggested through sql performance tuning adviser. There is include column option available in Ax 2012 but in Ax 2009 include column option is not available. 3. If there is recid field inclusion in index then please avoid this column to include in index because its unique filed and system maintain auto index creation if you select property createrecidx on table to yes . 4. Do not include dataareaid in index column because system take this column by default on all index. 5.After index creation synchronize table from AOT and re-index the table.

Define dimension values to container in ax 2012

To Define dimension values to container in ax 2012 you can try below code same way you can do for other dimension values like department,region ,store etc. DimensionDefault defaultDimension; str costcenter; Container con,defDimension,ledgerDimension; costcenter="0122"; if(costcenter) { defDimension = ["COSTCENTRE",costcenter]; } defDimension = [1] + defDimension; You can use defDimension value to AxdDimensionUtil::getDimensionAttributeValueSetId method to get default dimension recid as per provided values.

Steps for Workflow in ax 2012

Hotfix KB information to resolve issue based on localization in ax 2012 r2 and RTM

These are some Hotfix KB information to resolve issue based on localization in ax 2012 r2 and RTM version.

How Ax code is working

There are lot of Technical who write code in Axapta but they did not understand meaning of all lines of code only know output of code. My tips if you relate axapta code with c++ then you can understand it easily. If you understand concept of class and its object means oops concept then you can learn Ax faster. In Ax code is depends upon object. We can create object for Tables,class,View,Forms,Macros,maps etc. and each object execute on its own value. If you have very good in pointer concept ,object concept then you can under axapta very easy. Second thing you should know basic tables in Standard axapta like ledgertable, ledgerTrans, VendTable, vendtrans etc.  Without knowing functionality of process you can not do anything with code. So I hope above tips can help you to start leaning of Axapta. So good luck.