SAP L_STORAGE_UNIT_CHECK Function Module for NOTRANSL: Zähldaten Lagerinventur: Prüfen Lagerneinheitennummer
L_STORAGE_UNIT_CHECK is a standard l storage unit check SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Zähldaten Lagerinventur: Prüfen Lagerneinheitennummer 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 l storage unit check FM, simply by entering the name L_STORAGE_UNIT_CHECK into the relevant SAP transaction such as SE37 or SE38.
Function Group: L04INT
Program Name: SAPLL04INT
Main Program: SAPLL04INT
Appliation area: L
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function L_STORAGE_UNIT_CHECK 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 'L_STORAGE_UNIT_CHECK'"NOTRANSL: Zähldaten Lagerinventur: Prüfen Lagerneinheitennummer.
CHANGING
I04_INV = "Inventory data per quant
TABLES
CNT04_INV = "Inventory data per quant
EXCEPTIONS
SU_MISSING = 1 SU_ON_OTHER_BIN = 2 NUMRANGE_CONFLICT_INT = 3 NUMRANGE_CONFLICT_EXT = 4 TABLE_ENTRY_MISSING = 5 /CWM/WM_INV_OK = 6 /CWM/WM_INV_ERROR = 7 /CWM/WM_INV_BACK = 8
CHANGING Parameters details for L_STORAGE_UNIT_CHECK
I04_INV - Inventory data per quant
Data type: LINVOptional: No
Call by Reference: Yes
TABLES Parameters details for L_STORAGE_UNIT_CHECK
CNT04_INV - Inventory data per quant
Data type: LINVOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
SU_MISSING -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
SU_ON_OTHER_BIN -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NUMRANGE_CONFLICT_INT -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NUMRANGE_CONFLICT_EXT -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
TABLE_ENTRY_MISSING -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
/CWM/WM_INV_OK - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type:Optional: No
Call by Reference: Yes
/CWM/WM_INV_ERROR - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type:Optional: No
Call by Reference: Yes
/CWM/WM_INV_BACK - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for L_STORAGE_UNIT_CHECK 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_i04_inv | TYPE LINV, " | |||
| lt_cnt04_inv | TYPE STANDARD TABLE OF LINV, " | |||
| lv_su_missing | TYPE LINV, " | |||
| lv_su_on_other_bin | TYPE LINV, " | |||
| lv_numrange_conflict_int | TYPE LINV, " | |||
| lv_numrange_conflict_ext | TYPE LINV, " | |||
| lv_table_entry_missing | TYPE LINV, " | |||
| lv_/cwm/wm_inv_ok | TYPE LINV, " | |||
| lv_/cwm/wm_inv_error | TYPE LINV, " | |||
| lv_/cwm/wm_inv_back | TYPE LINV. " |
|   CALL FUNCTION 'L_STORAGE_UNIT_CHECK' "NOTRANSL: Zähldaten Lagerinventur: Prüfen Lagerneinheitennummer |
| CHANGING | ||
| I04_INV | = lv_i04_inv | |
| TABLES | ||
| CNT04_INV | = lt_cnt04_inv | |
| EXCEPTIONS | ||
| SU_MISSING = 1 | ||
| SU_ON_OTHER_BIN = 2 | ||
| NUMRANGE_CONFLICT_INT = 3 | ||
| NUMRANGE_CONFLICT_EXT = 4 | ||
| TABLE_ENTRY_MISSING = 5 | ||
| /CWM/WM_INV_OK = 6 | ||
| /CWM/WM_INV_ERROR = 7 | ||
| /CWM/WM_INV_BACK = 8 | ||
| . " L_STORAGE_UNIT_CHECK | ||
ABAP code using 7.40 inline data declarations to call FM L_STORAGE_UNIT_CHECK
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.Search for further information about these or an SAP related objects