Determines the table relationship of a given field.

TableNumber := Record.RELATION(Field)

Parameters

Record

Type: RecordThe record that contains Field.
Field

Type: FieldThe field for which you want to find the table relationship.

Property Value/Return Value

Type: Integer

The number of the table that has a relationship with Field. This relationship is set up through the properties.

Remarks

You can use this function for several purposes, such as to determine lookups or to check if you have permission to read from a table.

Example

The following example displays the number of the table that has a relation with the City field in the Customer table. In this example, table number 225, the Post Code table, is displayed because a table relation exists in the City field. If a relation does not exist, then an error message is displayed. This example requires that you create the following variables in the C/AL Globals window.

Variable name DataType Subtype

CustomerRec

Record

Customer

varTableNumber

Integer

Not applicable

  Copy Code
varTableNumber := CustomerRec.RELATION (CustomerRec.City);
MESSAGE('%1', varTableNumber);

See Also

Reference

Record Data Type