Object Oriented ABAP Inheritance Implementation in Local Class
Inheritance is used to derive a new class from an existing class. New class is called child class, subclass or derived class. Existing class is called parent class or superclass. The subclass inherits all the components of the superclass defined under PUBLIC and PROTECTED section, but not under PRIVATE section. Subclass components can access the […]
Object Oriented ABAP Inheritance Implementation in Local Class Read More »