Syntax
Identifier [ { . Identifier } [ ...n ] ]
Parameters
Identifier
An identifier preceding a period ('.') identifies the owner of the identifier following the same period.
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:
This – refers to the current entity.
Super – refers to the base class of the current entity.
Owner – refers to the owning entity of the current entity.
Component – refers to the owning segment of the current entity.
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