SAP Function Modules

Share |

ABAP_DOCU_START SAP Function module - Initial Screen for ABAP Documentation, Search, and Display

Pattern for FM ABAP_DOCU_START - ABAP DOCU START
Associated Function Group: ABAP_DOCU
Released Date: 14.12.2004
CALL FUNCTION 'ABAP_DOCU_START' "Initial Screen for ABAP Documentation, Search, and Display
* EXPORTING
*   word = ''                   " csequence     ABAP Term (Generic if Necessary)
*   first_word = ''             " csequence     First Word of Statement
*   mode = ' '                  " csequence     'ABAP' odr 'DYNP'
*   no_dialog = ' '             " abap_bool     No Display of Selection List and Return of Table if 'X'
*   index_flag = 'X'            " abap_bool     Search in Index
*   glossary_flag = 'X'         " abap_bool     Search in Glossary
*   subjects_flag = 'X'         " abap_bool     Search in Keywords
*   full_text_flag =            " abap_bool     Full Text Search
*   langu = SY-LANGU            " sy-langu      Language for Full Text Search
  IMPORTING
    docu_container =            " cl_gui_control  Reference to Docomentation or Hit List Container
    search_results =            " abdoc_search_results  Search Result if NO_DIALOG = 'X'
    .  "  ABAP_DOCU_START

SAP Documentation for FM ABAP_DOCU_START


FUNCTIONALITY

Search for terms in the ABAP keyword documentation. Display the hit list and call the documentation.

EXAMPLE


HINTS
  • After calling the module, you should set the focus to the control returned in DOCU_CONTAINER.

  • The controls used by the function module require connection to a screen. Calling outside a screen sequence (for example, in an executable program) is not useful.

    FURTHER_SOURCES_OF_INF
    Function module ABAP_DOCU_SHOW
    Documentation extract taken from SAP system, Copyright (c) SAP AG






    Share |