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

ABAP program(SE38) documentation

Former Member
0 Likes
1,946

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.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,207

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

3 REPLIES 3
Read only

Former Member
0 Likes
1,208

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

Read only

Former Member
0 Likes
1,207

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

Read only

Former Member
0 Likes
1,207

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.