SAP FT_SLS_KEYWORD_DETERMINE Function Module for NOTRANSL: Ges. Kontrolle: Ermittlung Suchbegriffe für einen SLS-Eintrag









FT_SLS_KEYWORD_DETERMINE is a standard ft sls keyword determine 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: Ges. Kontrolle: Ermittlung Suchbegriffe für einen SLS-Eintrag 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 ft sls keyword determine FM, simply by entering the name FT_SLS_KEYWORD_DETERMINE into the relevant SAP transaction such as SE37 or SE38.

Function Group: VFSC
Program Name: SAPLVFSC
Main Program: SAPLVFSC
Appliation area: V
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function FT_SLS_KEYWORD_DETERMINE 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 'FT_SLS_KEYWORD_DETERMINE'"NOTRANSL: Ges. Kontrolle: Ermittlung Suchbegriffe für einen SLS-Eintrag
EXPORTING
I_SLCAT = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* I_KWD_DB_READ = ' ' "DE-EN-LANG-SWITCH-NO-TRANSLATION
* I_KWD_NAMES = 'X' "DE-EN-LANG-SWITCH-NO-TRANSLATION
* I_KWD_ADDRESSES = 'X' "DE-EN-LANG-SWITCH-NO-TRANSLATION

TABLES
C_T_XFSLSN = "DE-EN-LANG-SWITCH-NO-TRANSLATION
C_T_XFSLSA = "DE-EN-LANG-SWITCH-NO-TRANSLATION
E_T_XFSLSW = "DE-EN-LANG-SWITCH-NO-TRANSLATION

EXCEPTIONS
NO_DELIMITER = 1 NO_ENTRIES_IN_T608L = 2
.



IMPORTING Parameters details for FT_SLS_KEYWORD_DETERMINE

I_SLCAT - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type: FSLS-SLCAT
Optional: No
Call by Reference: No ( called with pass by value option)

I_KWD_DB_READ - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type: C
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_KWD_NAMES - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type: C
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_KWD_ADDRESSES - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type: C
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for FT_SLS_KEYWORD_DETERMINE

C_T_XFSLSN - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type: FSLSNVB
Optional: No
Call by Reference: No ( called with pass by value option)

C_T_XFSLSA - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type: FSLSAVB
Optional: No
Call by Reference: No ( called with pass by value option)

E_T_XFSLSW - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type: FSLSWVB
Optional: No
Call by Reference: No ( called with pass by value option)

EXCEPTIONS details

NO_DELIMITER -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

NO_ENTRIES_IN_T608L -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for FT_SLS_KEYWORD_DETERMINE 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_slcat  TYPE FSLS-SLCAT, "   
lt_c_t_xfslsn  TYPE STANDARD TABLE OF FSLSNVB, "   
lv_no_delimiter  TYPE FSLSNVB, "   
lt_c_t_xfslsa  TYPE STANDARD TABLE OF FSLSAVB, "   
lv_i_kwd_db_read  TYPE C, "   ' '
lv_no_entries_in_t608l  TYPE C, "   
lt_e_t_xfslsw  TYPE STANDARD TABLE OF FSLSWVB, "   
lv_i_kwd_names  TYPE C, "   'X'
lv_i_kwd_addresses  TYPE C. "   'X'

  CALL FUNCTION 'FT_SLS_KEYWORD_DETERMINE'  "NOTRANSL: Ges. Kontrolle: Ermittlung Suchbegriffe für einen SLS-Eintrag
    EXPORTING
         I_SLCAT = lv_i_slcat
         I_KWD_DB_READ = lv_i_kwd_db_read
         I_KWD_NAMES = lv_i_kwd_names
         I_KWD_ADDRESSES = lv_i_kwd_addresses
    TABLES
         C_T_XFSLSN = lt_c_t_xfslsn
         C_T_XFSLSA = lt_c_t_xfslsa
         E_T_XFSLSW = lt_e_t_xfslsw
    EXCEPTIONS
        NO_DELIMITER = 1
        NO_ENTRIES_IN_T608L = 2
. " FT_SLS_KEYWORD_DETERMINE




ABAP code using 7.40 inline data declarations to call FM FT_SLS_KEYWORD_DETERMINE

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 SLCAT FROM FSLS INTO @DATA(ld_i_slcat).
 
 
 
 
DATA(ld_i_kwd_db_read) = ' '.
 
 
 
DATA(ld_i_kwd_names) = 'X'.
 
DATA(ld_i_kwd_addresses) = 'X'.
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!