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 module code

Former Member
0 Likes
489

hey ppl!

Any idea, in which table the code and parameters of function modules are stored.

Regards

Puru

3 REPLIES 3
Read only

former_member150733
Contributor
0 Likes
459

Table: FUPARAREF (Parameters of function modules)

Regards,

Anish

Read only

Former Member
0 Likes
459

hi,

The attributes of function modules are stored in TFDIR.

santhosh

Read only

Former Member
0 Likes
459

Hi Puru,

try this abap code

****

TABLES: tfdir.

DATA: BEGIN OF itab OCCURS 0,

line(72),

END OF itab.

DATA: pcode LIKE sy-repid.

SELECT SINGLE * FROM tfdir

WHERE funcname EQ 'HRCA_PATH_GET'.

CONCATENATE tfdir-pname+3(37)

'U'

tfdir-include

INTO pcode.

READ REPORT pcode INTO itab.

LOOP AT itab.

WRITE: / itab.

ENDLOOP.