tableStr Function
Dynamics AX 2009
Retrieves a string that contains the name the specified table.
str tableStr(str table)
The following example assigns the name of the CustTable table to the MyTxt variable.
static void tableStrExample(Args _args)
{
str MyTxt;
;
MyTxt = tableStr(CustTable);
Global::info(strfmt("%1 is the str output of the input of CustTable.", MyTxt));
}
/**** Infolog Display.
Message (01:21:49 pm)
CustTable is the str output of the input of CustTable.
****/
Community Additions
ADD
Show: