‎2009 May 05 1:42 AM
Dear all,
I've save/create the abap program documentation via SE38, radiobutton "Documentation".
Right now, i need to know where does the text being stored. I did try on the STXH (FM READ_TEXT) but not success.
Please comment.
Thanks in advance.
‎2009 May 05 2:20 AM
Hi,
You can use the FM: 'RS_TOOL_ACCESS' to call the documentation in your program.
If you really want to know where the doc. is stored, you can use ST05 to find it out yourself!
Here is a helpful sample of this FM.
call function ''RS_TOOL_ACCESS'
exporting
OPERATION = 'DOCS'
OBJECT_NAME = 'ZHCHTEST'
OBJECT_TYPE = 'PROG'
... ...
Try it yourself!
Best regards!
David Hu
‎2009 May 05 2:20 AM
Hi,
You can use the FM: 'RS_TOOL_ACCESS' to call the documentation in your program.
If you really want to know where the doc. is stored, you can use ST05 to find it out yourself!
Here is a helpful sample of this FM.
call function ''RS_TOOL_ACCESS'
exporting
OPERATION = 'DOCS'
OBJECT_NAME = 'ZHCHTEST'
OBJECT_TYPE = 'PROG'
... ...
Try it yourself!
Best regards!
David Hu
‎2009 May 05 3:18 AM
Hi,
Goto ST05 & try to trace the documentation,
it will fetch from different tables.
DOKCLU, DOKHL, TADIR, TRDIR, DOKIL, MIMETYPES, EPSSCHRFRM, PROGDIR,
SPERS_OBJ
Thanks & regards,
Dileep .C
‎2009 May 05 6:31 AM
Hi,
when we create documentation. it gets store in DOKHL,DOKTL,DOKIL,DTELDOKTL TABLES
DOKHL - Documentation Header.
DOKIL - Index for Documentation table dokh
DOKTL - Documentation - text lines.
DTELDOKTL- Documentation - text lines.
and you can go to ST05 to trace the document.