SAP C14F_LOV_TEXTCAT_IHS Function Module for
C14F_LOV_TEXTCAT_IHS is a standard c14f lov textcat ihs SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 c14f lov textcat ihs FM, simply by entering the name C14F_LOV_TEXTCAT_IHS into the relevant SAP transaction such as SE37 or SE38.
Function Group: C14F
Program Name: SAPLC14F
Main Program: SAPLC14F
Appliation area: M
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function C14F_LOV_TEXTCAT_IHS 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 'C14F_LOV_TEXTCAT_IHS'".
EXPORTING
I_OBJCAT = "Object Type
I_GUI_TITLE = "GUI Title
* I_FLG_SORT_1ST_COL = ESP1_TRUE "
* I_DISP_F4_FLG = ESP1_TRUE "
IMPORTING
E_F4_OKCODE = "
E_TEXTCAT = "
E_VALID_TEXTCAT_TAB = "
EXCEPTIONS
ILLEGAL_INPUT = 1 DATA_TAB_DISPLAY_ERROR = 2
IMPORTING Parameters details for C14F_LOV_TEXTCAT_IHS
I_OBJCAT - Object Type
Data type: CCIHC_TCG41-OBJCATOptional: No
Call by Reference: No ( called with pass by value option)
I_GUI_TITLE - GUI Title
Data type: ESP1_CUA_TITLE_NAMEOptional: No
Call by Reference: No ( called with pass by value option)
I_FLG_SORT_1ST_COL -
Data type: ESP1_BOOLEANDefault: ESP1_TRUE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_DISP_F4_FLG -
Data type: ESP1_BOOLEANDefault: ESP1_TRUE
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for C14F_LOV_TEXTCAT_IHS
E_F4_OKCODE -
Data type: ESP1_OKCODE_TYPEOptional: No
Call by Reference: No ( called with pass by value option)
E_TEXTCAT -
Data type: CCIHC_TCG41-TEXTCATOptional: No
Call by Reference: No ( called with pass by value option)
E_VALID_TEXTCAT_TAB -
Data type: EHSB_TS_TEXTCATF4Optional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
ILLEGAL_INPUT - Invalid Entry
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
DATA_TAB_DISPLAY_ERROR - Error displaying data
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for C14F_LOV_TEXTCAT_IHS 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_i_objcat | TYPE CCIHC_TCG41-OBJCAT, " | |||
| lv_e_f4_okcode | TYPE ESP1_OKCODE_TYPE, " | |||
| lv_illegal_input | TYPE ESP1_OKCODE_TYPE, " | |||
| lv_e_textcat | TYPE CCIHC_TCG41-TEXTCAT, " | |||
| lv_i_gui_title | TYPE ESP1_CUA_TITLE_NAME, " | |||
| lv_data_tab_display_error | TYPE ESP1_CUA_TITLE_NAME, " | |||
| lv_i_flg_sort_1st_col | TYPE ESP1_BOOLEAN, " ESP1_TRUE | |||
| lv_e_valid_textcat_tab | TYPE EHSB_TS_TEXTCATF4, " | |||
| lv_i_disp_f4_flg | TYPE ESP1_BOOLEAN. " ESP1_TRUE |
|   CALL FUNCTION 'C14F_LOV_TEXTCAT_IHS' " |
| EXPORTING | ||
| I_OBJCAT | = lv_i_objcat | |
| I_GUI_TITLE | = lv_i_gui_title | |
| I_FLG_SORT_1ST_COL | = lv_i_flg_sort_1st_col | |
| I_DISP_F4_FLG | = lv_i_disp_f4_flg | |
| IMPORTING | ||
| E_F4_OKCODE | = lv_e_f4_okcode | |
| E_TEXTCAT | = lv_e_textcat | |
| E_VALID_TEXTCAT_TAB | = lv_e_valid_textcat_tab | |
| EXCEPTIONS | ||
| ILLEGAL_INPUT = 1 | ||
| DATA_TAB_DISPLAY_ERROR = 2 | ||
| . " C14F_LOV_TEXTCAT_IHS | ||
ABAP code using 7.40 inline data declarations to call FM C14F_LOV_TEXTCAT_IHS
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 OBJCAT FROM CCIHC_TCG41 INTO @DATA(ld_i_objcat). | ||||
| "SELECT single TEXTCAT FROM CCIHC_TCG41 INTO @DATA(ld_e_textcat). | ||||
| DATA(ld_i_flg_sort_1st_col) | = ESP1_TRUE. | |||
| DATA(ld_i_disp_f4_flg) | = ESP1_TRUE. | |||
Search for further information about these or an SAP related objects