SAP INTERFACE COMPONENT SELECTOR SAP Info
ARTICLE ( Version: 0004)
• ~ ABAP_SELECTOR ( Version: 0004)
Interface Component Selector
A component
In this case, the character
selector. The name
The name
classes or component interfaces in composite interfaces.
ABAP_PGL
Note
An interface contains each component exactly once, regardless of how it
is composed of component interfaces. All the interface components are at the same hierarchical level. The name of an interface component is uniquely defined using
Example
Declaration of interfaces and access to their components.
TYPES t1 TYPE string.
ENDINTERFACE.
INTERFACE i2.
INTERFACES i1.
METHODS m2 IMPORTING p1 TYPE i1~t1.
ENDINTERFACE.
CLASS c1 DEFINITION.
PUBLIC SECTION.
INTERFACES i2.
ENDCLASS.
...
DATA oref TYPE REF TO c1.
oref->i2~m2( ... ).
...
CLASS c1 IMPLEMENTATION.
METHOD i2~m2.
...
ENDMETHOD.
ENDCLASS.>
ARTICLE ( Version: 0005)
• ~ ABAP_SELECTOR ( Version: 0005)
Interface Component Selector
A component
In this case, the character
selector. The name
The name
classes or component interfaces in composite interfaces.
ABAP_PGL
Note
An interface contains each component exactly once, regardless of how it
is composed of component interfaces. All the interface components are at the same hierarchical level. The name of an interface component is uniquely defined using
Example
Declaration of interfaces and access to their components.
TYPES t1 TYPE string.
ENDINTERFACE.
INTERFACE i2.
INTERFACES i1.
METHODS m2 IMPORTING p1 TYPE i1~t1.
ENDINTERFACE.
CLASS c1 DEFINITION.
PUBLIC SECTION.
INTERFACES i2.
ENDCLASS.
...
DATA oref TYPE REF TO c1.
oref->i2~m2( ... ).
...
CLASS c1 IMPLEMENTATION.
METHOD i2~m2.
...
ENDMETHOD.
ENDCLASS.>
Message text extract from SAP system. Copyright SAP SE.
Search for further information about these or an SAP related objects