Object Oriented ABAP Static Constructor in Local Class
Similar to instance constructor, static constructor is a special method called by the system runtime when the class is accessed for the first time during that program. How to define static constructor? Static constructor is basically a static method. To define a static constructor, In the ABAP Class definition, create a method with name CLASS_CONSTRUCTOR […]
Object Oriented ABAP Static Constructor in Local Class Read More »