Number sequence framework in Ax 2012 (simplified implementation)
Today. this post is about the “Number sequence framework in Ax 2012”. I did get a chance to work on it yesterday and I implemented the number sequence using the white paper available atmsdn. I won’t be...
View ArticleNumber Sequence Framework
This topic describes how to implement the number sequence framework for a new module in Microsoft Dynamics AX. The topic will show how some number sequences could be implemented for the Fleet...
View ArticleNumber sequences
Number sequences in Axapta are a mechanism for generating unique numbers. These are generally used as a unique Id to identify a table record.Every number sequence is linked to an ExtendedDataType...
View ArticleNumber Sequence Framework [AX 2012]
Updated: December 8, 2011Applies To: Microsoft Dynamics AX 2012 R2, Microsoft Dynamics AX 2012 Feature Pack, Microsoft Dynamics AX 2012Microsoft Dynamics AX has a number sequence framework to generate...
View ArticleStep-by-Step Checklist for Debugging Batch Jobs in Dynamics Ax
A. Enable Global Breakpoints When debugging in the client, you want to set breakpoints that can be caught by the debugger. The following steps show how.1. Launch the Microsoft Dynamics...
View ArticleKnow line numbers in X++ code
The following X++ code sample shows the behavior of the #linenumber directive.static void LinenumberPhysicalJob(Args _args){ ; #define.Debug(light) #if.Debug info("Physical Line 8: # linenumber == " +...
View ArticleCan Dynamics AX 2012 talk ?
I was playing around on some with some of the classes, and I found a small thing that I wanted to share with the community. How to enable the speech synthesizer in Dynamics AX 2012. (This is the...
View ArticleDynamics AX 2012 architecture for carton, packages and pallets
When shipping goods, there are many requirements that needs to be fulfilled. You have the ability to have correct addresses, customer requirements, freight forwarder requirements and legal...
View ArticleUnpicking the entire order all at once
For orders in AX (I am addressing sales orders specifically here), if you want to unpick an order, you have to go to the sales line and, one-by-one, unpick the order. You click on the Inventory button...
View ArticleAX2012: Update Invent Registration from code
This bit of code simply grabs the first InventTransOrigin record where the InventTransID's match, then grabs the FIRST record of the InventTrans table where it matches up with the origin... regardless...
View ArticleHow to create return Order from code
staticvoid SR_CreateReturnOrderAfterInvoice(Args _args) { CustInvoiceJour _invoiceRec; str _returnReason; CustInvoiceTrans custInvoiceTrans; SalesLine salesLine; SalesTable newRetOrder; CustInvoiceJour...
View ArticleHow to print sales Invoice ?
publicvoid printInvoiceReport(PurchId _purchId){ ReportRun report; RecordSortedList List = new RecordSortedList(tableNum(VendInvoiceJour)); VendInvoiceJour VendInvoiceJour =...
View ArticleGet product attributes from X++
The product attributes is a nice feature, where we can add attributes to the products without adding any additional fields on to the inventory table.But I wanted to be able to fetch out only the...
View ArticleProduct Attributes in AX 2012
Product Attributes are a nice addition to AX for the 2012 release. They give you a good way to further describe a product and its characteristics through user defined fields that would previously have...
View ArticleLabel IDs in Dynamics AX 2012
Dynamics AX handles text localization by using a label ID (e.g. @SYS1234) in code and metadata; the real text is looked up then based on user’s language. .NET developers may recall localization...
View ArticleInside SalesFormLetter class : ReArrange
Many times before I have made changes to the salesFormLetter classes and every time I went in there I was afraid ( as a figure of speech ) of the reArrange method. The whole thing was clear to me from...
View Articlecalculate total sales order or sales quotation amount / discounts / tax etc.,...
I have seen that few developers have a problem in getting the total Sales order amount or sales quotation amount with Tax /discounts etc., in the preferred currency before invoicing because these are...
View ArticleVendor Prepayment Functionality in Microsoft Dynamics AX 2012
Prepayments are a common business practice, with organizations issuing prepayments to vendors for goods or services before those goods or services are fulfilled. To minimize risk, you can track...
View ArticlePrepaid Purchase Orders Management in Microsoft Dynamics AX 2012 – [Vendor...
Vendors asking prepayment for their orders could be a very common scenario as part of their business policies. When this scenario arises, your business/finance team should be able to create a purchase...
View ArticleOpening external application(visual studio) or running external application...
Below is the job that can open visual studio from the x++ code. Through the same type of code any executable can be run through dynamics Ax.static voidVisualStudioOpeneingJob(Args...
View Article