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