Showing posts with label AX7 / D365 Extensions: Add a Field and a Method to a Table. Show all posts
Showing posts with label AX7 / D365 Extensions: Add a Field and a Method to a Table. Show all posts

Thursday, 31 May 2018

Add new Methods in Ax7


AX7 / D365 Extensions: Add a Field and a Method to a Table

[ExtensionOf(tableStr(InventTable))]
final class InventTable_Extension
{
    public static boolean isMyFieldEmpty(InventTable _this)
    {
        return _this.MyExtField == '' ? true : false;
    }

}