This documentation is archived and is not being maintained.
DictTable.id Method [AX 2012]
Returns the ID of the table.
The following example shows the retrieval of the ID of a table.
DictTable dt;
dt = new DictTable(tablenum(CustTable));
if (dt)
{
print (strfmt("The table ID is: %1", dt.id()));
}