1 Dec 2015

Finding primary key in a table + AX 2012


DictTable dictTable;
DictField dictField;
;
dictTable = new SysDictTable(tableNum(CustTable));
dictField = new SysDictField(dictTable.id(), dictTable.primaryKeyField());
info(dictField.name());

No comments:

Create number sequence in D365 FO

Create the data type. Add code in the loadModule method of the appropriate NumberSeqModule subclass. Add a method to the module’s paramet...