2015 Mar 30 9:58 AM
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.
2015 Mar 30 11:41 AM
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