SAP ISU_SCHEMA_STEPS_STRING_SEARCH Function Module for
ISU_SCHEMA_STEPS_STRING_SEARCH is a standard isu schema steps string search 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 isu schema steps string search FM, simply by entering the name ISU_SCHEMA_STEPS_STRING_SEARCH into the relevant SAP transaction such as SE37 or SE38.
Function Group: E20K1
Program Name: SAPLE20K1
Main Program: SAPLE20K1
Appliation area: E
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISU_SCHEMA_STEPS_STRING_SEARCH 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 'ISU_SCHEMA_STEPS_STRING_SEARCH'".
EXPORTING
X_START_INDEX = "
X_CURSOR_FIELD_NAME = "
X_NEXT = "
X_IESCHS = "
X_IETRFV = "
X_INDEX = "
IMPORTING
Y_INDEX_FOUND = "
Y_FIELD_NAME = "
Y_ISNO_FOUND = "
Y_HITLIST = "
EXCEPTIONS
GENERAL_FAULT = 1 NOT_FOUND = 2
IMPORTING Parameters details for ISU_SCHEMA_STEPS_STRING_SEARCH
X_START_INDEX -
Data type: SY-TABIXOptional: No
Call by Reference: No ( called with pass by value option)
X_CURSOR_FIELD_NAME -
Data type: DD03L-FIELDNAMEOptional: No
Call by Reference: No ( called with pass by value option)
X_NEXT -
Data type: REGEN-KENNZXOptional: No
Call by Reference: No ( called with pass by value option)
X_IESCHS -
Data type: ISU20_SCHEMA-DATA-ESCHSOptional: No
Call by Reference: Yes
X_IETRFV -
Data type: ISU20_RATE-DATA-ETRFVOptional: No
Call by Reference: Yes
X_INDEX -
Data type: ISU2A_IINDEXOptional: No
Call by Reference: Yes
EXPORTING Parameters details for ISU_SCHEMA_STEPS_STRING_SEARCH
Y_INDEX_FOUND -
Data type: SY-TABIXOptional: No
Call by Reference: No ( called with pass by value option)
Y_FIELD_NAME -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Y_ISNO_FOUND -
Data type: ISU2A_IINDEXOptional: No
Call by Reference: No ( called with pass by value option)
Y_HITLIST -
Data type: REGEN-KENNZXOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
GENERAL_FAULT -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NOT_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISU_SCHEMA_STEPS_STRING_SEARCH 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_general_fault | TYPE STRING, " | |||
| lv_x_start_index | TYPE SY-TABIX, " | |||
| lv_y_index_found | TYPE SY-TABIX, " | |||
| lv_not_found | TYPE SY, " | |||
| lv_y_field_name | TYPE SY, " | |||
| lv_x_cursor_field_name | TYPE DD03L-FIELDNAME, " | |||
| lv_x_next | TYPE REGEN-KENNZX, " | |||
| lv_y_isno_found | TYPE ISU2A_IINDEX, " | |||
| lv_x_ieschs | TYPE ISU20_SCHEMA-DATA-ESCHS, " | |||
| lv_y_hitlist | TYPE REGEN-KENNZX, " | |||
| lv_x_ietrfv | TYPE ISU20_RATE-DATA-ETRFV, " | |||
| lv_x_index | TYPE ISU2A_IINDEX. " |
|   CALL FUNCTION 'ISU_SCHEMA_STEPS_STRING_SEARCH' " |
| EXPORTING | ||
| X_START_INDEX | = lv_x_start_index | |
| X_CURSOR_FIELD_NAME | = lv_x_cursor_field_name | |
| X_NEXT | = lv_x_next | |
| X_IESCHS | = lv_x_ieschs | |
| X_IETRFV | = lv_x_ietrfv | |
| X_INDEX | = lv_x_index | |
| IMPORTING | ||
| Y_INDEX_FOUND | = lv_y_index_found | |
| Y_FIELD_NAME | = lv_y_field_name | |
| Y_ISNO_FOUND | = lv_y_isno_found | |
| Y_HITLIST | = lv_y_hitlist | |
| EXCEPTIONS | ||
| GENERAL_FAULT = 1 | ||
| NOT_FOUND = 2 | ||
| . " ISU_SCHEMA_STEPS_STRING_SEARCH | ||
ABAP code using 7.40 inline data declarations to call FM ISU_SCHEMA_STEPS_STRING_SEARCH
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 TABIX FROM SY INTO @DATA(ld_x_start_index). | ||||
| "SELECT single TABIX FROM SY INTO @DATA(ld_y_index_found). | ||||
| "SELECT single FIELDNAME FROM DD03L INTO @DATA(ld_x_cursor_field_name). | ||||
| "SELECT single KENNZX FROM REGEN INTO @DATA(ld_x_next). | ||||
| "SELECT single DATA FROM ISU20_SCHEMA INTO @DATA(ld_x_ieschs). | ||||
| "SELECT single KENNZX FROM REGEN INTO @DATA(ld_y_hitlist). | ||||
| "SELECT single DATA FROM ISU20_RATE INTO @DATA(ld_x_ietrfv). | ||||
Search for further information about these or an SAP related objects