Code :
REPORT ZVP_CLASS_SAMPLE.
CLASS DEMO DEFINITION.
PUBLIC SECTION.
DATA: V1 TYPE I 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.
REPORT ZVP_CLASS_SAMPLE.
CLASS DEMO DEFINITION.
PUBLIC SECTION.
DATA: V1 TYPE I 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