Code Snippets

Inheritance Concept in ABAP OOPS with Example

Inheritance Concept in ABAP OOPS with Example Inheritance Child Class inheriting the properties of Parent class is known as Inheritance. In ABAP, a subclass can be created for existing clas…

Interface and Polymorphism in ABAP OOPS

Interface and Polymorphism in ABAP OOPS Interface The Interface is similar to class. Like class an interface also contains attributes, methods, and events but an interface contains only dec…

How To Create Events in Local Class ABAP OOPS

Events in Local Class Events are used to raise a message if any condition is met. For example, in our program we have a code where we need to fetch vendor details based on vendor entered in…

How To Create Local Class in ABAP OOPS

Local Class: Class created in SE38 as an ABAP program or in include is known as Local class. These are limited to the program in which it is defined or created. We cannot create objects for…

Load More
That is All