Application Development 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: 

Include containing the method implementations

Former Member
0 Kudos

Hi Experts

Does someone of you know if I can access the include containing the implementation of all methods of a ABAP Class. I know the names of includes for public, protected and private sections, but the include name of the method implementation I don't know.

Regards,

Mathias

1 ACCEPTED SOLUTION

uwe_schieferstein
Active Contributor
0 Kudos

Hello Mathias

The static method CL_OO_CLASSNAME_SERVICE=>GET_ALL_METHOD_INCLUDES.

For inherited methods you have to check the superclass.

Example: CL_OO_CLASSNAME_SERVICE

CL_OO_CLASSNAME_SERVICE=======CM001
CL_OO_CLASSNAME_SERVICE=======CM002
CL_OO_CLASSNAME_SERVICE=======CM003
...

Regards

Uwe

1 REPLY 1

uwe_schieferstein
Active Contributor
0 Kudos

Hello Mathias

The static method CL_OO_CLASSNAME_SERVICE=>GET_ALL_METHOD_INCLUDES.

For inherited methods you have to check the superclass.

Example: CL_OO_CLASSNAME_SERVICE

CL_OO_CLASSNAME_SERVICE=======CM001
CL_OO_CLASSNAME_SERVICE=======CM002
CL_OO_CLASSNAME_SERVICE=======CM003
...

Regards

Uwe