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

FUNCTION_INCLUDE_INFO - incomplete include list

Former Member
0 Likes
757

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
647

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

2 REPLIES 2
Read only

Former Member
0 Likes
648

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

Read only

0 Likes
647

Vinod, thank you very much. That is awesome!

Best regards, Adrian