SAP Function Modules

Share |

SELECT_TEXT SAP Function module - SAPscript: Select text

Pattern for FM SELECT_TEXT - SELECT TEXT
Associated Function Group: STXD
Released Date: 16.01.1995
CALL FUNCTION 'SELECT_TEXT' "SAPscript: Select text
* EXPORTING
*   client = SY-MANDT           " sy-mandt      Client
*   database_only = SPACE       "               Indicator: Search in text file only
*   textmemory_only = SPACE     "               Indicator: Search in text memory only
*   object = '*'                " thead-tdobject  Text object of texts to be searched for
*   name = '*'                  " thead-tdname  Name of text to be searched for
*   id = '*'                    " thead-tdid    Text ID of texts to be searched for
*   language = '*'              " thead-tdspras  Language of texts to be searched for
*   archive_handle = 0          " sy-tabix      Archive handle
*   local_cat = SPACE           "               Text catalog local
  IMPORTING
    entries =                   " sy-tfill      Number of texts found
* TABLES
*   selections =                " thead         Text header of texts found
*   t_object =                  " stxdrobj      Table for text objects (RANGES)
*   t_name =                    " stxdrname     Table for text names (RANGES)
*   t_id =                      " stxdrid       Table for text IDs (RANGES)
*   t_language =                " stxdrlang     Table for text languages (RANGES)
*   i_name =                    " stextname     Structure Contains Elementary Type TDNAME
  EXCEPTIONS
    WRONG_ACCESS_TO_ARCHIVE = 1  "              Archive handle invalid for access
    .  "  SELECT_TEXT






Share |