Get Example source ABAP code based on a different SAP table
• ~ ABAP_SELECTOR
Interface Component Selector A component comp> of an interface is accessed using the following name: intf~comp> In this case, the character ~> is the interface component selector. The name intf> of an interface must be to the left of the interface component selector. The name comp> of the component must be to the right of the interface component selector. The name intf~comp> identifies the components of interfaces in classes, or component interfaces in linked interfaces.
ABAP_PGL Address interface components using interface reference variables> ABAP_PGL_END
Latest notes: An interface contains each component exactly once, regardless of its combination of component interfaces. All the interface components are at the same hierarchical level. The name of an interface component is uniquely defined by intf~comp>, where intf> is always the interface in which the component is declared. A direct chaining of interface names intf1~...~intfn~comp> is not possible. NON_V5_HINTS ABAP_HINT_END
ABAP_EXAMPLE_VX5 Declaration of interfaces and access to their components. ABEXA 01704 ABAP_EXAMPLE_END