SAP INHERITANCE ABSTRACT FINAL
Get Example source ABAP code based on a different SAP table
ABAP_OBJ - Abstract and Final Methods and Classes
Abstract and final methods or classes can be defined using the additions
Abstract methods are declared in abstract classes and cannot be implemented in the same class, only in a subclass of the inheritance tree. Abstract classes cannot, therefore, be instantiated. A non-abstract method is a concrete method. With the exception of the instance constructor, concrete instance methods of a class can also call their abstract methods.
Final methods can no longer be redefined in subclasses. They cannot have any additional subclasses and close an inheritance tree definitively.
Latest notes:
NON_V5_HINTS
ABAP_HINT_END