‎2008 Apr 28 2:03 PM
Hi,
I use DOCU_GET to read the class documentation:
CALL FUNCTION 'DOCU_GET'
EXPORTING
extend_except = 'X'
id = 'CL'
langu = sy-langu
object = ld_object
TABLES
line = lt_lines
EXCEPTIONS
no_docu_on_screen = 1
no_docu_self_def = 2
no_docu_temp = 3
ret_code = 4
OTHERS = 5
id = CL (Class)
object = Name of the class
How can I read the documentation of a methof in a class?
Tried this and some other DOCU f/m... without success.
Thx & regards
Michael
‎2008 Apr 28 2:39 PM