‎2010 Apr 23 8:27 AM
I need to get a list of all includes for a function group, but FUNCTION_INCLUDE_INFO references TFDIR, so it only lists function modules and is incomplete.I also need for example Forms (_F01) includes. If you know of a program or function module that will give a more comprehensive list of INCLUDES per program/function group, please let me know. Thank you, Adrian
‎2010 Apr 23 8:53 AM
Hi,
data : l_pname type pname.
concatenate 'SAPL' <function group name> into l_pname.Use function module "GET_INCLUDES" by passing L_PNAME as the parameter.
Regards
Vinod
‎2010 Apr 23 8:53 AM
Hi,
data : l_pname type pname.
concatenate 'SAPL' <function group name> into l_pname.Use function module "GET_INCLUDES" by passing L_PNAME as the parameter.
Regards
Vinod
‎2010 Apr 23 8:58 AM
Vinod, thank you very much. That is awesome!
Best regards, Adrian