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

Convert a include name into a class/method name

flvia_s
Participant
0 Likes
2,504

Hi Guys.

I have an include name like ZCL_XX_XXXXXX====CM004 but when I see it in a workbench request, it is recorded as "ZCL_XX_XXXXXX       METHODNAME". So here is what I need: how to find this/class method name without having to use se38 transaction? Is there a database table where I can find it?

Thanks in advace.

Alm

1 ACCEPTED SOLUTION
Read only

sascha_reissig
Participant
0 Likes
1,732

Hi,

in table TMDIR you can find classes and their methods. You can find the mapping rule by using function module SEO_CLASS_GET_METHOD_INCLUDES. Here the mentioned table is selected and depending on the method index the corresponding suffix is build.

regards, Sascha

2 REPLIES 2
Read only

sascha_reissig
Participant
0 Likes
1,734

Hi,

in table TMDIR you can find classes and their methods. You can find the mapping rule by using function module SEO_CLASS_GET_METHOD_INCLUDES. Here the mentioned table is selected and depending on the method index the corresponding suffix is build.

regards, Sascha

Read only

0 Likes
1,730

Thanks, Sascha. It helped to find FM SEO_METHOD_GET_NAME_BY_INCLUDE.