ABAP Code To Download Internal Table as Excel File
ABAP Code To Download Internal Table as Excel File In some projects we get a requirement to fetch the data from table and download it as an excel file. This can be achieved by displaying A…
ABAP Code To Download Internal Table as Excel File In some projects we get a requirement to fetch the data from table and download it as an excel file. This can be achieved by displaying A…
FILTER Operator in ABAP Internal Tables FILTER operator is used to filter entries based on any field in internal table and pass it to another internal table. To use filter on any internal t…
Abstract Class and Abstract Method in ABAP OOPS Abstract Class: It is a class which can’t be instantiated or a class for which objects cannot be created. The instance can be created only f…
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 The Interface is similar to class. Like class an interface also contains attributes, methods, and events but an interface contains only dec…
Understand the difference between Constructors and Static/Class Constructors in ABAP OOPS. Constructor is a special type of method which gets triggered during runtime. Whenever the object…
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…
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…
How to Create a Hotspot Field in OOPS ALV Report A hotspot in ALV is similar to hyperlink. A hotspot field can be used to trigger or call any event. It can be used as interactive ALV. T…