DictTable.isView Method [AX 2012]

Indicates whether the table is a view.

public boolean isView()

Run On

Called

Return Value

Type: boolean
true if the table is a view; otherwise, false.

The following example shows the retrieval of a value that indicates whether the table is a view.

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

Community Additions

ADD
Show: