SAP ISU_SELECT_VALUE Function Module for EHS Integration Search Help









ISU_SELECT_VALUE is a standard isu select value SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for EHS Integration Search Help 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 isu select value FM, simply by entering the name ISU_SELECT_VALUE into the relevant SAP transaction such as SE37 or SE38.

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



Function ISU_SELECT_VALUE 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_SELECT_VALUE'"EHS Integration Search Help
EXPORTING
X_SHLPNAME = "Name of a Search Help
* X_FIELDNAME1 = "Field Name
* X_FIELDNAME2 = "Field Name
* X_FIELDNAME3 = "Field Name
* X_FIELDNAME4 = "Field Name

IMPORTING
Y_FIELDVAL1 = "Field Contentx, Minimum/Maximum Value
Y_FIELDVAL2 = "Field Contentx, Minimum/Maximum Value
Y_FIELDVAL3 = "Field Contentx, Minimum/Maximum Value
Y_FIELDVAL4 = "Field Contentx, Minimum/Maximum Value

TABLES
X_T_RECORD = "Search Help Result Structure
* Y_T_RETURN = "Interface Structure Search Help <-> Help System
.



IMPORTING Parameters details for ISU_SELECT_VALUE

X_SHLPNAME - Name of a Search Help

Data type: DD30V-SHLPNAME
Optional: No
Call by Reference: Yes

X_FIELDNAME1 - Field Name

Data type: FIELDNAME
Optional: Yes
Call by Reference: Yes

X_FIELDNAME2 - Field Name

Data type: FIELDNAME
Optional: Yes
Call by Reference: Yes

X_FIELDNAME3 - Field Name

Data type: FIELDNAME
Optional: Yes
Call by Reference: Yes

X_FIELDNAME4 - Field Name

Data type: FIELDNAME
Optional: Yes
Call by Reference: Yes

EXPORTING Parameters details for ISU_SELECT_VALUE

Y_FIELDVAL1 - Field Contentx, Minimum/Maximum Value

Data type: SHVALUE_D
Optional: No
Call by Reference: Yes

Y_FIELDVAL2 - Field Contentx, Minimum/Maximum Value

Data type: SHVALUE_D
Optional: No
Call by Reference: Yes

Y_FIELDVAL3 - Field Contentx, Minimum/Maximum Value

Data type: SHVALUE_D
Optional: No
Call by Reference: Yes

Y_FIELDVAL4 - Field Contentx, Minimum/Maximum Value

Data type: SHVALUE_D
Optional: No
Call by Reference: Yes

TABLES Parameters details for ISU_SELECT_VALUE

X_T_RECORD - Search Help Result Structure

Data type: SEAHLPRES
Optional: No
Call by Reference: Yes

Y_T_RETURN - Interface Structure Search Help <-> Help System

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

Copy and paste ABAP code example for ISU_SELECT_VALUE 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_x_shlpname  TYPE DD30V-SHLPNAME, "   
lt_x_t_record  TYPE STANDARD TABLE OF SEAHLPRES, "   
lv_y_fieldval1  TYPE SHVALUE_D, "   
lt_y_t_return  TYPE STANDARD TABLE OF DDSHRETVAL, "   
lv_y_fieldval2  TYPE SHVALUE_D, "   
lv_x_fieldname1  TYPE FIELDNAME, "   
lv_y_fieldval3  TYPE SHVALUE_D, "   
lv_x_fieldname2  TYPE FIELDNAME, "   
lv_y_fieldval4  TYPE SHVALUE_D, "   
lv_x_fieldname3  TYPE FIELDNAME, "   
lv_x_fieldname4  TYPE FIELDNAME. "   

  CALL FUNCTION 'ISU_SELECT_VALUE'  "EHS Integration Search Help
    EXPORTING
         X_SHLPNAME = lv_x_shlpname
         X_FIELDNAME1 = lv_x_fieldname1
         X_FIELDNAME2 = lv_x_fieldname2
         X_FIELDNAME3 = lv_x_fieldname3
         X_FIELDNAME4 = lv_x_fieldname4
    IMPORTING
         Y_FIELDVAL1 = lv_y_fieldval1
         Y_FIELDVAL2 = lv_y_fieldval2
         Y_FIELDVAL3 = lv_y_fieldval3
         Y_FIELDVAL4 = lv_y_fieldval4
    TABLES
         X_T_RECORD = lt_x_t_record
         Y_T_RETURN = lt_y_t_return
. " ISU_SELECT_VALUE




ABAP code using 7.40 inline data declarations to call FM ISU_SELECT_VALUE

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 SHLPNAME FROM DD30V INTO @DATA(ld_x_shlpname).
 
 
 
 
 
 
 
 
 
 
 


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!