F Simple CLASS Program in SAP ABAP | CodeTheta

Simple CLASS Program in SAP ABAP

November 21, 2019

Code :
REPORT ZVP_CLASS_SAMPLE.

CLASS DEMO DEFINITION.
  PUBLIC SECTION.
  DATAV1 TYPE VALUE 20.

  PROTECTED SECTION.

  PRIVATE SECTION.
ENDCLASS.

START-OF-SELECTION.
DATA OBJ TYPE REF TO DEMO.
CREATE OBJECT OBJ.
WRITE:/ OBJ->V1.


Output :

IDE Used To Test This Code : ABAP Editor.

Try this code in your computer for better understanding. Enjoy the code. If you have any Question you can contact us or mail us.We will reply you as soon as possible.

Post a Comment