Table Names | Table Description |
---|---|
CustTable | The table for basic customer information |
VendTable | The table for basic vendor information. |
LedgerTable | The table for the general ledger that contains the chart of accounts information. |
InventTable | The table for the general inventory catalog. |
PurchTable | The table for purchase order creation information. |
SalesTable | The table for sales order creation information. |
Home
Sales order using X++
Purchase order using X++
Creating customer payment journal using X++
Vendor payment journal using X++
Genral journal using X++
Posting Journals using X++
Opening form using X++
How to browse a file using X++
Find and Exist methods
Filter grid on list page
DMF Generate method for Default dimension
Generating default dimension using dimension values in X++
Difference between Abstract and Interface
Difference between AX 2012 and D 365 Finance and Operations
Difference between InMemory and TempDB tables in AX 2012
Difference between Construct and New method in AX 2012
Difference between static method and instance method
Difference between Runbase and SysOperation framework
Difference between Morphx and Intellimorph
Difference between runbase and runbasebatch class
Saturday, February 25, 2017
Some of the important AX Tables
Undersatanding InventDimId and InventTransId
InventDimId:- It is generated against the unique combination of inventory dimensions(size,color etc.).The unique combination can be found in table InventDim.
InventTransId:- It is generated against each transaction of an item and the transaction is saved in table InventTrans.This ID is generated in order to keep track of the item.
Detail explaination on InventDimId:- http://basicax.blogspot.in/2013/03/ax2012-understanding-inventdimid.html
InventTransId:- It is generated against each transaction of an item and the transaction is saved in table InventTrans.This ID is generated in order to keep track of the item.
Detail explaination on InventDimId:- http://basicax.blogspot.in/2013/03/ax2012-understanding-inventdimid.html
Subscribe to:
Posts (Atom)
How to enable the dimension fields based on the Item selected on the form.
[Form] public class KMTShipFromWarehouses extends FormRun { InventDimCtrl_Frm_EditDimensions inventDimFormSetup; /// &l...
-
Get formRun, Form control, datasource and selected record from form datasource : [FormDataSourceEventHandler(formDataSourceStr(MyForm, My...
-
// The first step is to define the query variables that we will be using. This is building the framework. Query ...
-
Form Method Calling Sequence in AX 2012 Sequence of Methods calls while opening the Form Form --- init () Form --- Datasource --- init ...