|
Description Display of keyword documentation in HTML control. The display depends onthe user settings in the table ABDOCMODE (E: modeless dialog box, I:same box, M: one common external session for all external sessions). Caution Using the function module directly outside of the package SABAPDOCU isobsolete. Use the method SHOW of the CL_ABAP_DOCU class instead.
- AREA, Appropriate values are ABEN, ABAP, DYNP
- NAME, Appropriate values are names of keywords such as MODULE
- LANGU, Language key
- ANCHOR, Internal marker, should be suitably transferred
The default values for the IMPORTING parameters are ABEN, ABAP,SY-LANGU.EXPORTING Parameter
- DOCU_CONTAINER, if display mode E (modless dialog box), reference to
HTML control, otherwise initial.Note on Use It is sensible to set the focus to the HTML control after calling thefunction module and during the PBO event of the subsequent screen: IF NOT docu_container IS INITIAL.> CALL METHOD cl_gui_control=>set_focus> EXPORTING control = docu_container.> CLEAR docu_container.> ENDIF.>Caution The controls used by the function module require a connection to ascreen. Calling outside a screen sequence (for example, in an executableprogram) is not useful if the documentation is displayed in an amodalwindow.
|