SAP TERM_HTML_ITS_GET_TERM_LIST Function Module for NOTRANSL: Erzeugen einer Begriffsliste
TERM_HTML_ITS_GET_TERM_LIST is a standard term html its get term list SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Erzeugen einer Begriffsliste processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for term html its get term list FM, simply by entering the name TERM_HTML_ITS_GET_TERM_LIST into the relevant SAP transaction such as SE37 or SE38.
Function Group: STERM_DIALOG_HTML
Program Name: SAPLSTERM_DIALOG_HTML
Main Program: SAPLSTERM_DIALOG_HTML
Appliation area: S
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function TERM_HTML_ITS_GET_TERM_LIST pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'TERM_HTML_ITS_GET_TERM_LIST'"NOTRANSL: Erzeugen einer Begriffsliste.
EXPORTING
LANGUAGE = "
TARGET = "
SEARCH_TERM = "
COMPONENT = "Application Component ID
IMPORTING
FIRST_CONCEPT = "CHAR32 Data Element for SYST
SEARCHED_TERM = "
TABLES
DATA_TABLE = "Transfer Structure for SAPterm in Web
EXCEPTIONS
NO_ENTRY_FOUND = 1
IMPORTING Parameters details for TERM_HTML_ITS_GET_TERM_LIST
LANGUAGE -
Data type: SY-LANGUOptional: No
Call by Reference: No ( called with pass by value option)
TARGET -
Data type: SY-LANGUOptional: No
Call by Reference: No ( called with pass by value option)
SEARCH_TERM -
Data type: STERM_TEXT-TEXTOptional: No
Call by Reference: No ( called with pass by value option)
COMPONENT - Application Component ID
Data type: DF14L-PS_POSIDOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for TERM_HTML_ITS_GET_TERM_LIST
FIRST_CONCEPT - CHAR32 Data Element for SYST
Data type: STERM_HEAD-CONCEPTOptional: No
Call by Reference: No ( called with pass by value option)
SEARCHED_TERM -
Data type: STERM_TEXT-TEXTOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for TERM_HTML_ITS_GET_TERM_LIST
DATA_TABLE - Transfer Structure for SAPterm in Web
Data type: STERM_ITS1Optional: No
Call by Reference: Yes
EXCEPTIONS details
NO_ENTRY_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for TERM_HTML_ITS_GET_TERM_LIST Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_language | TYPE SY-LANGU, " | |||
| lt_data_table | TYPE STANDARD TABLE OF STERM_ITS1, " | |||
| lv_first_concept | TYPE STERM_HEAD-CONCEPT, " | |||
| lv_no_entry_found | TYPE STERM_HEAD, " | |||
| lv_target | TYPE SY-LANGU, " | |||
| lv_searched_term | TYPE STERM_TEXT-TEXT, " | |||
| lv_search_term | TYPE STERM_TEXT-TEXT, " | |||
| lv_component | TYPE DF14L-PS_POSID. " |
|   CALL FUNCTION 'TERM_HTML_ITS_GET_TERM_LIST' "NOTRANSL: Erzeugen einer Begriffsliste |
| EXPORTING | ||
| LANGUAGE | = lv_language | |
| TARGET | = lv_target | |
| SEARCH_TERM | = lv_search_term | |
| COMPONENT | = lv_component | |
| IMPORTING | ||
| FIRST_CONCEPT | = lv_first_concept | |
| SEARCHED_TERM | = lv_searched_term | |
| TABLES | ||
| DATA_TABLE | = lt_data_table | |
| EXCEPTIONS | ||
| NO_ENTRY_FOUND = 1 | ||
| . " TERM_HTML_ITS_GET_TERM_LIST | ||
ABAP code using 7.40 inline data declarations to call FM TERM_HTML_ITS_GET_TERM_LIST
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.| "SELECT single LANGU FROM SY INTO @DATA(ld_language). | ||||
| "SELECT single CONCEPT FROM STERM_HEAD INTO @DATA(ld_first_concept). | ||||
| "SELECT single LANGU FROM SY INTO @DATA(ld_target). | ||||
| "SELECT single TEXT FROM STERM_TEXT INTO @DATA(ld_searched_term). | ||||
| "SELECT single TEXT FROM STERM_TEXT INTO @DATA(ld_search_term). | ||||
| "SELECT single PS_POSID FROM DF14L INTO @DATA(ld_component). | ||||
Search for further information about these or an SAP related objects