DictTable.isTmp Method
Indicates whether the table is a temporary table.
Syntax
public boolean isTmp()
Run On
Called
Return Value
Type: boolean
true if the table is a temporary table; otherwise, false.
Examples
The following example shows the retrieval of a value that indicates whether the table is a temporary table.
DictTable dt;
dt = new DictTable(tablenum(TmpWMSOrder));
if (dt)
{
print(strfmt("Temporary table: %1", dt.isTmp()));
}
See Also
DictTable.isDefaultData Method