SAP OIUE1_LSSL_SUMMARY_LOAD Function Module for LSSL Summary - Initial Load
OIUE1_LSSL_SUMMARY_LOAD is a standard oiue1 lssl summary load SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for LSSL Summary - Initial Load 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 oiue1 lssl summary load FM, simply by entering the name OIUE1_LSSL_SUMMARY_LOAD into the relevant SAP transaction such as SE37 or SE38.
Function Group: OIUE1_LSSL_SUMMARY
Program Name: SAPLOIUE1_LSSL_SUMMARY
Main Program: SAPLOIUE1_LSSL_SUMMARY
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function OIUE1_LSSL_SUMMARY_LOAD 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 'OIUE1_LSSL_SUMMARY_LOAD'"LSSL Summary - Initial Load.
EXPORTING
IV_BA = "Business Associate
IV_SEQ = "Sequence Number
IV_MODE = "I = Insert, R = Repair
IMPORTING
EV_BA = "Business Associate
EV_SEQ = "Sequence Number
EV_MODE = "I = Insert, R = Repair
EV_RC = "Return value, return value after ABAP statements
IMPORTING Parameters details for OIUE1_LSSL_SUMMARY_LOAD
IV_BA - Business Associate
Data type: OIUH_CM_BA-BA_BA_NOOptional: No
Call by Reference: No ( called with pass by value option)
IV_SEQ - Sequence Number
Data type: OIUH_CM_BA-BA_SEQ_NOOptional: No
Call by Reference: No ( called with pass by value option)
IV_MODE - I = Insert, R = Repair
Data type: CHAR1Optional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for OIUE1_LSSL_SUMMARY_LOAD
EV_BA - Business Associate
Data type: OIUH_CM_BA-BA_BA_NOOptional: No
Call by Reference: No ( called with pass by value option)
EV_SEQ - Sequence Number
Data type: OIUH_CM_BA-BA_SEQ_NOOptional: No
Call by Reference: No ( called with pass by value option)
EV_MODE - I = Insert, R = Repair
Data type: CHAR1Optional: No
Call by Reference: No ( called with pass by value option)
EV_RC - Return value, return value after ABAP statements
Data type: SY-SUBRCOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for OIUE1_LSSL_SUMMARY_LOAD 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_ev_ba | TYPE OIUH_CM_BA-BA_BA_NO, " | |||
| lv_iv_ba | TYPE OIUH_CM_BA-BA_BA_NO, " | |||
| lv_ev_seq | TYPE OIUH_CM_BA-BA_SEQ_NO, " | |||
| lv_iv_seq | TYPE OIUH_CM_BA-BA_SEQ_NO, " | |||
| lv_ev_mode | TYPE CHAR1, " | |||
| lv_iv_mode | TYPE CHAR1, " | |||
| lv_ev_rc | TYPE SY-SUBRC. " |
|   CALL FUNCTION 'OIUE1_LSSL_SUMMARY_LOAD' "LSSL Summary - Initial Load |
| EXPORTING | ||
| IV_BA | = lv_iv_ba | |
| IV_SEQ | = lv_iv_seq | |
| IV_MODE | = lv_iv_mode | |
| IMPORTING | ||
| EV_BA | = lv_ev_ba | |
| EV_SEQ | = lv_ev_seq | |
| EV_MODE | = lv_ev_mode | |
| EV_RC | = lv_ev_rc | |
| . " OIUE1_LSSL_SUMMARY_LOAD | ||
ABAP code using 7.40 inline data declarations to call FM OIUE1_LSSL_SUMMARY_LOAD
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 BA_BA_NO FROM OIUH_CM_BA INTO @DATA(ld_ev_ba). | ||||
| "SELECT single BA_BA_NO FROM OIUH_CM_BA INTO @DATA(ld_iv_ba). | ||||
| "SELECT single BA_SEQ_NO FROM OIUH_CM_BA INTO @DATA(ld_ev_seq). | ||||
| "SELECT single BA_SEQ_NO FROM OIUH_CM_BA INTO @DATA(ld_iv_seq). | ||||
| "SELECT single SUBRC FROM SY INTO @DATA(ld_ev_rc). | ||||
Search for further information about these or an SAP related objects