This documentation is archived and is not being maintained.
DictTable.enabled Method [AX 2012]
Returns a value that indicates whether the table is enabled.
Run On
Called
Return Value
Type:
boolean
true if the table is enabled; otherwise, false.
The following example shows the retrieval of the value that indicates whether the table is enabled.
DictTable dt;
dt = new DictTable(tablenum(CustTable));
if (dt)
{
print (strfmt("The table is %1.", dt.enabled() ? "enabled" : "not enabled"));
}