tablePName Function
Dynamics AX 2009
Retrieves a string that contains the printable name of the specified table.
str tablePName(str table)
The following example assigns the label of the CustTable table to the MyText variable.
static void tablePNameExample(Args _args)
{
str MyText;
;
MyText = tablePname(CustTable);
Global::info(strfmt("%1 is the label of the CustTable table.", MyText));
}
/**** Infolog Display.
Message (12:13:53 pm)
Customers is the label of the CustTable table.
****/
Community Additions
ADD
Show: