DictTable.isBaseData Method [AX 2012]

Indicates whether the table content is base data.

public boolean isBaseData()

Run On

Called

Return Value

Type: boolean
true if the TableContents property in the AOT indicates that the table content is base data; otherwise, false.

The following example shows the retrieval of a value that indicates whether the table content is base data.

DictTable dt; 
 
dt = new DictTable(tablenum(CustTable)); 
if (dt) 
{ 
    print strfmt("isBaseData: %1", dt.isBaseData()); 
    print strfmt("isDefaultData: %1", dt.isDefaultData()); 
}

Community Additions

ADD
Show: