Qualifiers

Syntax

Identifier [ { . Identifier } [ ...n ] ]

Parameters

Description

Qualifiers identify entities when their names exist in more than one context.

The portion of the qualifier proceeding the last period ('.') is the namespace of the identifier following that period. Refer to Namespaces in Model Entities for more information.

Namespaces do not always have to be explicitly named. Use of the following namespace identifiers allows dynamic qualification of identifiers:

Note: You cannot use Segment name as qualifier for the owning Segment. Use the Component instead of the segment name.

Example

This example references data while iterating through a MyExtract extract file, using a MyIterator extract file iterator.

ForEach MyIterator In MyExtract
MyCustomerNumber := MyIterator.Cust.Customer
 : ...
End