SAP ISP_SUCHFELD_PHONETISCHE_SUCHE Function Module for IS-M/SD: Generate Sort Field for Phonetic Search
ISP_SUCHFELD_PHONETISCHE_SUCHE is a standard isp suchfeld phonetische suche SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for IS-M/SD: Generate Sort Field for Phonetic Search 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 isp suchfeld phonetische suche FM, simply by entering the name ISP_SUCHFELD_PHONETISCHE_SUCHE into the relevant SAP transaction such as SE37 or SE38.
Function Group: JSS2
Program Name: SAPLJSS2
Main Program: SAPLJSS2
Appliation area: J
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISP_SUCHFELD_PHONETISCHE_SUCHE 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 'ISP_SUCHFELD_PHONETISCHE_SUCHE'"IS-M/SD: Generate Sort Field for Phonetic Search.
EXPORTING
FELDNAME = "
LAND1 = "Country
SORTIERFELD = "
* ART_PH_SUCHE = CON_ART_PS_STR "
IMPORTING
SUCHFELD = "Search Field
NAME_LANG = "
IMPORTING Parameters details for ISP_SUCHFELD_PHONETISCHE_SUCHE
FELDNAME -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
LAND1 - Country
Data type: JSTSTRPRO-LAND1Optional: No
Call by Reference: No ( called with pass by value option)
SORTIERFELD -
Data type: JSTSTRPRO-STR_NAME_LOptional: No
Call by Reference: No ( called with pass by value option)
ART_PH_SUCHE -
Data type: TJS30-ISP_ART_PSDefault: CON_ART_PS_STR
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for ISP_SUCHFELD_PHONETISCHE_SUCHE
SUCHFELD - Search Field
Data type: JSTORTPRO-SUCHFELDOOptional: No
Call by Reference: No ( called with pass by value option)
NAME_LANG -
Data type: JSTSTRPRO-STR_NAME_LOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISP_SUCHFELD_PHONETISCHE_SUCHE 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_feldname | TYPE STRING, " | |||
| lv_suchfeld | TYPE JSTORTPRO-SUCHFELDO, " | |||
| lv_land1 | TYPE JSTSTRPRO-LAND1, " | |||
| lv_name_lang | TYPE JSTSTRPRO-STR_NAME_L, " | |||
| lv_sortierfeld | TYPE JSTSTRPRO-STR_NAME_L, " | |||
| lv_art_ph_suche | TYPE TJS30-ISP_ART_PS. " CON_ART_PS_STR |
|   CALL FUNCTION 'ISP_SUCHFELD_PHONETISCHE_SUCHE' "IS-M/SD: Generate Sort Field for Phonetic Search |
| EXPORTING | ||
| FELDNAME | = lv_feldname | |
| LAND1 | = lv_land1 | |
| SORTIERFELD | = lv_sortierfeld | |
| ART_PH_SUCHE | = lv_art_ph_suche | |
| IMPORTING | ||
| SUCHFELD | = lv_suchfeld | |
| NAME_LANG | = lv_name_lang | |
| . " ISP_SUCHFELD_PHONETISCHE_SUCHE | ||
ABAP code using 7.40 inline data declarations to call FM ISP_SUCHFELD_PHONETISCHE_SUCHE
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 SUCHFELDO FROM JSTORTPRO INTO @DATA(ld_suchfeld). | ||||
| "SELECT single LAND1 FROM JSTSTRPRO INTO @DATA(ld_land1). | ||||
| "SELECT single STR_NAME_L FROM JSTSTRPRO INTO @DATA(ld_name_lang). | ||||
| "SELECT single STR_NAME_L FROM JSTSTRPRO INTO @DATA(ld_sortierfeld). | ||||
| "SELECT single ISP_ART_PS FROM TJS30 INTO @DATA(ld_art_ph_suche). | ||||
| DATA(ld_art_ph_suche) | = CON_ART_PS_STR. | |||
Search for further information about these or an SAP related objects