Using below command you can compile the AX-2012
- copy and paste the highlighted cd C:\Program Files\Microsoft Dynamics AX\60\Server\MicrosoftDynamicsAX\bin , press enter.
- copy and paste the highlighted ,AXBuild.exe xppcompileall /s=06,press enter.
static void demoCompareRecords(Args _args) { VendTable vendTable_1 = VendTable::find('ABC'); VendTable vendTable_2 = VendTable::find('XYZ'); container con; int i; ; con = MyClass::compareRecords(vendTable_1 , vendTable_2 ); for (i=1; i<=conLen(con); i+=3) { info(strFmt("%1, %2 ,%3" ,fieldId2Name(tableNum(VendTable), conPeek(con, i)) ,conPeek(con, i+1) ,conPeek(con, i+2) ) ); } }
Virtual Field: A virtual field in D365FO is a field that doesn't have a direct representation in the database. It's a field that y...