Welcome To My BLOG

This site is to give a brief idea for the abap learners who are looking for some real time programs .It consists of collection of programs from my side . I hope these programs are very much used for all of the learners. Please check the links for any information in ABAP.
Please vote for my Blog. And please input me on this mail addrssess.Email me

Share this link with your friends

http://www.rebtel.com/u/15163104576

For every friend who signs up using this link and makes a payment, we'll give you 8 €!


Monday, December 13, 2010

OOPS:1.5 Class can be instantiated within implementation of another class

REPORT YSUBOOPS17 .

class class1 definition.
public section.
methods : method1 .
endclass.

class class2 definition.
public section.
methods : method2 .
endclass.

class class1 implementation.
method :method1.
data : i_num type i value 2.
write:/5 i_num.
endmethod.
endclass.

class class2 implementation.
method : method2.
data : obj1 type ref to class1.
create object obj1.
call method obj1->method1.
endmethod.
endclass.

start-of-selection.
data : my_obj type ref to class2.
create object : my_obj.
call method my_obj->method2.


Output 2

No comments: