DictRelation.table Method [AX 2012]

Returns the table ID of the relation.

public TableId table()

Run On

Called

Return Value

Type: TableId Extended Data Type
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();

Community Additions

ADD
Show: