SAP ISU_PICK_OBJECT Function Module for INTERN: Module to Display Any Objects
ISU_PICK_OBJECT is a standard isu pick object SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for INTERN: Module to Display Any Objects 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 pick object FM, simply by entering the name ISU_PICK_OBJECT into the relevant SAP transaction such as SE37 or SE38.
Function Group: EE00
Program Name: SAPLEE00
Main Program: SAPLEE00
Appliation area: E
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISU_PICK_OBJECT 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_PICK_OBJECT'"INTERN: Module to Display Any Objects.
EXPORTING
X_REFSTRUCT = "
X_REFFIELD = "Field Name
X_VALUE = "Field value
* X_OBJTYPE_NOT_ALLOWED = "
* X_VALUE_NOT_ALLOWED = "
TABLES
* XT_VALID_OBJTYPES = "
EXCEPTIONS
CANCELLED = 1 NO_OBJECT = 2
IMPORTING Parameters details for ISU_PICK_OBJECT
X_REFSTRUCT -
Data type: EWCELEM-REFSTRUCTOptional: No
Call by Reference: No ( called with pass by value option)
X_REFFIELD - Field Name
Data type: EWCELEM-REFFIELDOptional: No
Call by Reference: No ( called with pass by value option)
X_VALUE - Field value
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
X_OBJTYPE_NOT_ALLOWED -
Data type: SWOTOBJID-OBJTYPEOptional: Yes
Call by Reference: No ( called with pass by value option)
X_VALUE_NOT_ALLOWED -
Data type:Optional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for ISU_PICK_OBJECT
XT_VALID_OBJTYPES -
Data type: EBA_RANGESOptional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
CANCELLED - Function cancelled
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_OBJECT - No Object Type Found
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISU_PICK_OBJECT 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_cancelled | TYPE STRING, " | |||
| lv_x_refstruct | TYPE EWCELEM-REFSTRUCT, " | |||
| lt_xt_valid_objtypes | TYPE STANDARD TABLE OF EBA_RANGES, " | |||
| lv_no_object | TYPE EBA_RANGES, " | |||
| lv_x_reffield | TYPE EWCELEM-REFFIELD, " | |||
| lv_x_value | TYPE EWCELEM, " | |||
| lv_x_objtype_not_allowed | TYPE SWOTOBJID-OBJTYPE, " | |||
| lv_x_value_not_allowed | TYPE SWOTOBJID. " |
|   CALL FUNCTION 'ISU_PICK_OBJECT' "INTERN: Module to Display Any Objects |
| EXPORTING | ||
| X_REFSTRUCT | = lv_x_refstruct | |
| X_REFFIELD | = lv_x_reffield | |
| X_VALUE | = lv_x_value | |
| X_OBJTYPE_NOT_ALLOWED | = lv_x_objtype_not_allowed | |
| X_VALUE_NOT_ALLOWED | = lv_x_value_not_allowed | |
| TABLES | ||
| XT_VALID_OBJTYPES | = lt_xt_valid_objtypes | |
| EXCEPTIONS | ||
| CANCELLED = 1 | ||
| NO_OBJECT = 2 | ||
| . " ISU_PICK_OBJECT | ||
ABAP code using 7.40 inline data declarations to call FM ISU_PICK_OBJECT
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 REFSTRUCT FROM EWCELEM INTO @DATA(ld_x_refstruct). | ||||
| "SELECT single REFFIELD FROM EWCELEM INTO @DATA(ld_x_reffield). | ||||
| "SELECT single OBJTYPE FROM SWOTOBJID INTO @DATA(ld_x_objtype_not_allowed). | ||||
Search for further information about these or an SAP related objects