SAP Tutorials Blog


 

 


Report ZAccess1. 

CLASS class1 Definition.

   PUBLIC Section.

      Data: text1 Type char25 Value 'Public Data'.

      Methods meth1.

   PROTECTED Section.

      Data: text2 Type char25 Value 'Protected Data'.

   PRIVATE Section.     

      Data: text3 Type char25 Value 'Private Data'. 

ENDCLASS.

 

CLASS class1 Implementation.   

   Method meth1.     

      Write: / 'Public Method:',   

             / text1,

             / text2,

             / text3.

      Skip.

   EndMethod.

ENDCLASS. 


Start-Of-Selection.   

   Data: Objectx Type Ref To class1.

   Create Object: Objectx.

   CALL Method: Objectx→meth1.

   Write: / Objectx→text1.



Serkan AKKAVAK

Computer Engineer BSc

Head of SAP & Software Department

Contact : serkurumsal@yandex.com