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

Finding function module for a function group

Former Member
0 Likes
644

Hi Experts,

where can I find list of function modules under a function group through program and not in SE80.

Is there any table. or Is there any function module? Kindly help me.

Thanks and regards,

Venkat

3 REPLIES 3
Read only

Former Member
0 Likes
602

Hello

Table ENLFDIR

Read only

Former Member
0 Likes
602

Hello,

Check this sample,



data: t_functions type standard table of RFC_GROUP with header line.


CALL FUNCTION 'RFC_FUNCTION_SEARCH_WITHGROUP'
 EXPORTING
   GROUPNAME               = 'ZFUNC_GRP'     " Your function group name
  TABLES
    functions               = t_functions
          .
          
loop at t_functions.
write:/ t_functions-FUNCNAME.
endloop.

Vikranth

Read only

I355602
Product and Topic Expert
Product and Topic Expert
0 Likes
602

Hi,

Open table ENLFDIR and put in AREA as the function group.

Regards,

Tarun