This documentation is archived and is not being maintained.
DictRelation.table Method [AX 2012]
Returns the table ID of the relation.
The following example shows the retrieval of the table ID for a relation.
Dictionary dict;
DictRelation dr;
dict = new Dictionary();
dr = new DictRelation(dict.tableName2Id("CustTable"));
print dr.table();