The call syntax methodname (parameterlist) has been used, methodname might be the last term in a series of scope resolutions such as qualifier.methodname (parameterlist) where it is necessary to disambiguate the name. qualifier might be the name of a class such as an Ispec or report, or could be one of:
super– to refer to the class from which the current class inherits
owner – to refer to the owner of the current object
component – to refer to the owning segment
Note: You cannot use Segment name as qualifier. To refer to the owning segment, use component qualifier instead of the segment name.
Example
The example below shows a method CustMethod (belonging to segment Segment1) being invoked.
The logic statement given below is valid:
Component.CustMethod()
The following logic statement using segment name is invalid:
Segment1.CustMethod()