‎2009 Dec 23 5:31 AM
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
‎2009 Dec 23 5:40 AM
‎2009 Dec 23 5:43 AM
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
‎2009 Dec 23 5:44 AM
Hi,
Open table ENLFDIR and put in AREA as the function group.
Regards,
Tarun