‎2006 Nov 30 10:56 AM
hey ppl!
Any idea, in which table the code and parameters of function modules are stored.
Regards
Puru
‎2006 Nov 30 11:10 AM
Table: FUPARAREF (Parameters of function modules)
Regards,
Anish
‎2006 Nov 30 11:11 AM
hi,
The attributes of function modules are stored in TFDIR.
santhosh
‎2006 Nov 30 8:33 PM
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.