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

How to get Include names of SAP Objects like Class method, Function module, WD

Former Member
0 Likes
2,809

Hi Experts,

I need your help to identify the include names of SAP objects for CLASS-Methods, Function Groups-Modules, Web Dynpro Methods, smart forms etc..

Currently I am using different classes for different objects , e.g. CL_OO_CLASSNAME_SERVICE for class methods,  CL_WDY_WB_NAMING_SERVICE for web dynpro components etc..

I need a single class/function module name where I can pass the E071 information and get the internal include names.

Thanks.

Ravi.

1 REPLY 1
Read only

Former Member
0 Likes
1,194

Hi Ravi,

table WBCROSSI is for finding includes.

Includes for function group KKBL for example can be found for the main program SAPLKKBL with

SELECT NAME FROM WBCROSSI WHERE MASTER EQ 'SAPLKKBL'.

Includes for class CL_GUI_ALV_GRID can be found concatenating class name with "="  up to 30 characters and appending  "CP":

SELECT NAME FROM WBCROSSI WHERE MASTER EQ 'CL_GUI_ALV_GRID===============CP'.

Please check, if you can find your other required data in this table, too.

Regards,

Klaus