Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

CREATE OBJECT in OOP

Former Member
0 Likes
444

hello experts,

I am new to ABAP OOP world and having a doubt. Whenever we are creating an object using CREATE OBJECT statement in export parameter we pass something. For eg if i create an object of CL_GUI_CUSTOM_CONTAINER in EXPORT parameter we pass CONTAINER_NAME. How we can come to know wat to pass in EXPORT parameter while creating an object of an unknown class.

1 ACCEPTED SOLUTION
Read only

kesavadas_thekkillath
Active Contributor
0 Likes
407

Those are the values passed to the constructors, check the method constructor of the class and its parameters.

2 REPLIES 2
Read only

kesavadas_thekkillath
Active Contributor
0 Likes
408

Those are the values passed to the constructors, check the method constructor of the class and its parameters.

Read only

0 Likes
407

Thank You...