SAP CLASS COMPONENT



Get Example source ABAP code based on a different SAP table
  



CLASS, components
The components of the classes are defined in the visibility sections. The following declaration statements are possible for components:
TYPES, DATA, CLASS-DATA, and CONSTANTS for data types and data objects
METHODS, CLASS-METHODS, EVENTS, and CLASS-EVENTS for methods and events
INTERFACES for implementing interfaces and ALIASES for alias names for interface components



Latest notes:

All the components in a class are in the same namespace. Within a class, the name of a component must be unique, regardless of its type (data type, attribute, method, event, or alias name). The components of an implemented interface are marked with the prefix intf~ (the name of the interface with interface component selector).
NON_V5_HINTS
ABAP_HINT_END

ABAP_EXAMPLE_VX5
Declaration of various components in the public and private visibility section of a class.
ABEXA 01702
ABAP_EXAMPLE_END