Provide Method Call Syntax

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:

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()