SAP ISU_DB_ROBJ_FORALL_INSTLN Function Module for Array Select from Service Frequencies for Several Facilities
ISU_DB_ROBJ_FORALL_INSTLN is a standard isu db robj forall instln SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Array Select from Service Frequencies for Several Facilities 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 db robj forall instln FM, simply by entering the name ISU_DB_ROBJ_FORALL_INSTLN into the relevant SAP transaction such as SE37 or SE38.
Function Group: EEWA_DB_ROBJ
Program Name: SAPLEEWA_DB_ROBJ
Main Program: SAPLEEWA_DB_ROBJ
Appliation area: E
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISU_DB_ROBJ_FORALL_INSTLN 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_DB_ROBJ_FORALL_INSTLN'"Array Select from Service Frequencies for Several Facilities.
EXPORTING
* X_NO_MESSAGE = 'X' "Indicator
IMPORTING
YT_ROBJS = "
Y_MDATA = "Object Data of Service Frequency
TABLES
T_INSTLN = "Sorted Unique Table of Installation Keys
EXCEPTIONS
NOT_FOUND = 1 SYSTEM_ERROR = 2 NOT_QUALIFIED = 3 HISTORY_NOT_FOUND = 4 GENERAL_FAULT = 5
IMPORTING Parameters details for ISU_DB_ROBJ_FORALL_INSTLN
X_NO_MESSAGE - Indicator
Data type: KENNZXDefault: 'X'
Optional: Yes
Call by Reference: Yes
EXPORTING Parameters details for ISU_DB_ROBJ_FORALL_INSTLN
YT_ROBJS -
Data type: ISUWA_T_ROBJOptional: No
Call by Reference: Yes
Y_MDATA - Object Data of Service Frequency
Data type: ISUWA_GP_DATAOptional: No
Call by Reference: Yes
TABLES Parameters details for ISU_DB_ROBJ_FORALL_INSTLN
T_INSTLN - Sorted Unique Table of Installation Keys
Data type: ISU_ANLAGE_TABOptional: No
Call by Reference: Yes
EXCEPTIONS details
NOT_FOUND - No Object Found
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
SYSTEM_ERROR - Other Error
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NOT_QUALIFIED - Input Parameters Are not Qualified
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
HISTORY_NOT_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
GENERAL_FAULT -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for ISU_DB_ROBJ_FORALL_INSTLN 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: | ||||
| lt_t_instln | TYPE STANDARD TABLE OF ISU_ANLAGE_TAB, " | |||
| lv_yt_robjs | TYPE ISUWA_T_ROBJ, " | |||
| lv_not_found | TYPE ISUWA_T_ROBJ, " | |||
| lv_x_no_message | TYPE KENNZX, " 'X' | |||
| lv_y_mdata | TYPE ISUWA_GP_DATA, " | |||
| lv_system_error | TYPE ISUWA_GP_DATA, " | |||
| lv_not_qualified | TYPE ISUWA_GP_DATA, " | |||
| lv_history_not_found | TYPE ISUWA_GP_DATA, " | |||
| lv_general_fault | TYPE ISUWA_GP_DATA. " |
|   CALL FUNCTION 'ISU_DB_ROBJ_FORALL_INSTLN' "Array Select from Service Frequencies for Several Facilities |
| EXPORTING | ||
| X_NO_MESSAGE | = lv_x_no_message | |
| IMPORTING | ||
| YT_ROBJS | = lv_yt_robjs | |
| Y_MDATA | = lv_y_mdata | |
| TABLES | ||
| T_INSTLN | = lt_t_instln | |
| EXCEPTIONS | ||
| NOT_FOUND = 1 | ||
| SYSTEM_ERROR = 2 | ||
| NOT_QUALIFIED = 3 | ||
| HISTORY_NOT_FOUND = 4 | ||
| GENERAL_FAULT = 5 | ||
| . " ISU_DB_ROBJ_FORALL_INSTLN | ||
ABAP code using 7.40 inline data declarations to call FM ISU_DB_ROBJ_FORALL_INSTLN
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.| DATA(ld_x_no_message) | = 'X'. | |||
Search for further information about these or an SAP related objects