This is a short post to see how select works on ABAP Cloud Environment, although it mostly remains the same but there few small changes which every ABAPER should be aware about The main difference is introduction of the keyword called FIELDS , so either you specify your fields in the with the SELECT keyword … Continue reading Understanding ABAP Cloud SELECT Syntax Changes
Instance vs Class Constructors: ABAP Explained
What is a constructor? Constructor is a special type of method for initializing the attributes of the class.It gets triggered automatically when an object is created.It never returns any value.It can be declared in the Public Section only. Instance Constructor An instance constructor in ABAP is specific to each object, meaning it is automatically executed … Continue reading Instance vs Class Constructors: ABAP Explained
Interactive reports in ABAP
Events in a interactive Report At Line-Selection This event will trigger whenever the user double click on any list line. At User Command This event will trigger whenever user clicks on any custom buttons of the GUI. At PF Status This event will trigger whenever user clicks on any function buttons. Top Of Page During line … Continue reading Interactive reports in ABAP