‎2006 Jun 08 1:40 PM
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
‎2006 Jun 08 1:47 PM
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
‎2006 Jun 08 1:49 PM
hi
try this FM
<b>AA_CUS_EDIT_FM_DOCUMENTATION</b>
chk the table <b>TFDIR</b>
‎2006 Jun 08 1:49 PM
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
‎2006 Jun 08 1:54 PM
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
‎2006 Jun 08 2:02 PM