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

Documentation of Function Modules and Class Methods

Former Member
0 Likes
1,422

Hi

I would like to know the function modules that handle the documentation of function modules and class methods.Is it possible to assign the same documentation of a function module to a method as method documentation?

Are these documentations stored in some system tables?

Thanks in advance,

Hema

5 REPLIES 5
Read only

Former Member
0 Likes
878

hi Hema,

In SE37 when you enter a FM name there at the top you can find a button as FUNCTION MODULE DOCUMENTATION Press that one to know the documentation.

I don't think there are table which maintatin documentation of a FM

Regards,

Santosh

Read only

Former Member
0 Likes
878

hi

try this FM

<b>AA_CUS_EDIT_FM_DOCUMENTATION</b>

chk the table <b>TFDIR</b>

Read only

Former Member
0 Likes
878

The documentation text is stored as Standard text.

you can see these details in the function module->

goto->documentation->

you will now see a screen, there GOTO->HEADER.

YOU will see a screen with the below details.

Text Name Z0MM_SCM_FNC_EVCOR_DELIVERY

Language EN

Text ID FU Function module

Text object DOKU Online Documentation

in this case TEXT NAME = FUNCTION MODULE NAME.

These details are stored in STXH &STXL . But you can use select from these tables. you have to use READ_TEXT to read the documentation to the program.

regards

srikanth

Read only

Former Member
0 Likes
878

Hi,

you can maintain the documentation in the FM or Method directly using the documentation Option. here you can maintain the Long texts. this will be stored in STXH and STXL in non readable format.

Regards

vijay

Read only

0 Likes
878

hi,

look to transaction <b>se61</b> too.

Andreas