Application Development 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: 

FM DSYS_SHOW

kiran_k8
Active Contributor
0 Kudos

Hi,

I have an Z claissical report where on double clicking it is showing the error log documentation in a performance assitant using the FM DSYS_SHOW as below

Performance Assistant in the sense the documentation of the error log is getting displayed in a pop up.

For ex if we double click on an error message or information message of SAP standard,it will show the documentation of that error in a pop up.In the same way it is showing for zclasssical repot.


CALL FUNCTION 'DSYS_SHOW'
    EXPORTING
      application      = 'SO70'
      dokclass         = c_dokclass   "CHAP
      doklangu         = sy-langu
      dokname          = l_doc_name   "ZXXX010 (this 004 is the value in the report on which we double clicked)
      doktitle         = l_title      " Title is some hardcoded text
      viewname         = 'STANDARD'
    EXCEPTIONS
      class_unknown    = 1
      object_not_found = 2
      OTHERS           = 3.

Do anyone here have an idea on the above FM ? If so,kindly let me know from where the text is getting populated into the performance assistant and how and where it will be maintained.I checked in SO10 but in vain.

What is DOKNAME and DOKCLASS and how they can be created.

What is SO70

Thanks,

K.Kiran.

Edited by: Kiran K on Jun 3, 2011 6:10 AM

2 REPLIES 2

kiran_k8
Active Contributor
0 Kudos

Searched SDN and got the answer.

Using SE61 they maintained documentation under the document class CHAP.

Thanks,

K.Kiran.

kiran_k8
Active Contributor
0 Kudos

.