AX – D365FO – Get Field, Label, Type and Name using X++

Following are they way to get Table Labelstatic void Job21(Args _args){    info(TablePName(CustTable));} Following are they way to get Field Label of the tablestatic void Job21(Args _args){     info(fieldPName(CustTable,AccountNum));} Following is the way to find Label , Name and Data type of all fields of any table.static void Job21(Args _args){     DictTable    … Continue reading AX – D365FO – Get Field, Label, Type and Name using X++