How to get table label in dynamics ax 2012 using x++
display TableLabel getTableLabel()
{
FieldLabel ret;
DictTable dictTable;
TableId tableId = tableNum(Salestable);
if(tableId)
{
dictTable = new DictTable(tableId);
ret = dictTable.label();
}
return ret;
}
{
FieldLabel ret;
DictTable dictTable;
TableId tableId = tableNum(Salestable);
if(tableId)
{
dictTable = new DictTable(tableId);
ret = dictTable.label();
}
return ret;
}
Comments
Post a Comment