AX 2012 常用基础

1 .  InMemory tables 和 TempDB tables

      For InMemory tables, by using the setTmpData() method
      For TempDB tables, the linkPhysicalTableInstance() method replaces the setTmpData() call.

2.

http://www.axaptapedia.com/Expressions_in_query_ranges

qbsCustTable.addRange(fieldNum(CustTable, CustGroup)).value(
                      strFmt('((%1 == %2) || (%3 == %4))',
                      fieldStr(CustTable, CustGroup), //%1
                      "A",                            //%2
                     fieldStr(CustTable, CustGroup), //%3
                    "B"));         //%4

qbsCustTable.addRange(fieldNum(CustTable, CustGroup)).value(
                      strFmt('((%1 > %2) || (%3 > %4))',
                     fieldStr(CustTable, AccountNum), //%1
                    "100",                      //%2
                   fieldStr(CustTable, CustGroup),  //%3
                   "1000"));          //%4

3.Table Methods in Ax 2012

http://msdaxtech.blogspot.jp/2015/03/table-methods-in-ax-2012.html

4.SEQUENCE OF METHODS CALLED IN FORM AND TABLE IN AX

http://howtoax.com/sequence-of-methods-called-in-form-and-table-in-ax/

5.Expressions or Functions used in AX 2012 SSRS Reports

http://krishhdax.blogspot.jp/2012/10/expressions-or-functions-used-in-ax.html

原文地址:https://www.cnblogs.com/fogfog/p/6292346.html