SAP GET_VERIFY_SU_BULK Function Module for Verify storage unit data for bulk storage









GET_VERIFY_SU_BULK is a standard get verify su bulk SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Verify storage unit data for bulk storage 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 get verify su bulk FM, simply by entering the name GET_VERIFY_SU_BULK into the relevant SAP transaction such as SE37 or SE38.

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



Function GET_VERIFY_SU_BULK 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 'GET_VERIFY_SU_BULK'"Verify storage unit data for bulk storage
EXPORTING
I_WHS_ID = "Warehouse id
I_BATCH = "Batch
I_STOCK_CAT = "Stock category
I_STOCK_IND = "Stock indicator
I_STOCK_NUM = "Special stock number
I_SU_ID = "Storage unit
I_STORAGE_TYPE = "Storage type
I_BIN = "Storage bin
I_POS = "Position in storage bin
I_MATERIAL = "Material
I_QUANTITY = "Quantity
I_PLANT = "Plant
I_STLOC = "Storage location

TABLES
T_SU_RECORD = "SU data
T_QUANT_RECORDS = "Quants data

EXCEPTIONS
NO_RECORD_FOUND = 1 WRONG_SU = 2
.




Customer Function user exits

Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.
EXIT_SAPLLMGT_001 Extension for barcode translation
EXIT_SAPLLMGT_083 User exit for print

IMPORTING Parameters details for GET_VERIFY_SU_BULK

I_WHS_ID - Warehouse id

Data type: LEIN-LGNUM
Optional: No
Call by Reference: No ( called with pass by value option)

I_BATCH - Batch

Data type: LTAP-CHARG
Optional: No
Call by Reference: No ( called with pass by value option)

I_STOCK_CAT - Stock category

Data type: LTAP-BESTQ
Optional: No
Call by Reference: No ( called with pass by value option)

I_STOCK_IND - Stock indicator

Data type: LTAP-SOBKZ
Optional: No
Call by Reference: No ( called with pass by value option)

I_STOCK_NUM - Special stock number

Data type: LTAP-SONUM
Optional: No
Call by Reference: No ( called with pass by value option)

I_SU_ID - Storage unit

Data type: LEIN-LENUM
Optional: No
Call by Reference: No ( called with pass by value option)

I_STORAGE_TYPE - Storage type

Data type: LTAP-VLTYP
Optional: No
Call by Reference: No ( called with pass by value option)

I_BIN - Storage bin

Data type: LTAP-VLPLA
Optional: No
Call by Reference: No ( called with pass by value option)

I_POS - Position in storage bin

Data type: LTAP-VPPOS
Optional: No
Call by Reference: No ( called with pass by value option)

I_MATERIAL - Material

Data type: LTAP-MATNR
Optional: No
Call by Reference: No ( called with pass by value option)

I_QUANTITY - Quantity

Data type: LTAP-VSOLA
Optional: No
Call by Reference: No ( called with pass by value option)

I_PLANT - Plant

Data type: LTAP-WERKS
Optional: No
Call by Reference: No ( called with pass by value option)

I_STLOC - Storage location

Data type: LTAP-LGORT
Optional: No
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for GET_VERIFY_SU_BULK

T_SU_RECORD - SU data

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

T_QUANT_RECORDS - Quants data

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

EXCEPTIONS details

NO_RECORD_FOUND -

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

WRONG_SU -

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

Copy and paste ABAP code example for GET_VERIFY_SU_BULK 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_i_whs_id  TYPE LEIN-LGNUM, "   
lt_t_su_record  TYPE STANDARD TABLE OF LEIN, "   
lv_no_record_found  TYPE LEIN, "   
lv_i_batch  TYPE LTAP-CHARG, "   
lv_i_stock_cat  TYPE LTAP-BESTQ, "   
lv_i_stock_ind  TYPE LTAP-SOBKZ, "   
lv_i_stock_num  TYPE LTAP-SONUM, "   
lv_i_su_id  TYPE LEIN-LENUM, "   
lv_wrong_su  TYPE LEIN, "   
lt_t_quant_records  TYPE STANDARD TABLE OF LQUA, "   
lv_i_storage_type  TYPE LTAP-VLTYP, "   
lv_i_bin  TYPE LTAP-VLPLA, "   
lv_i_pos  TYPE LTAP-VPPOS, "   
lv_i_material  TYPE LTAP-MATNR, "   
lv_i_quantity  TYPE LTAP-VSOLA, "   
lv_i_plant  TYPE LTAP-WERKS, "   
lv_i_stloc  TYPE LTAP-LGORT. "   

  CALL FUNCTION 'GET_VERIFY_SU_BULK'  "Verify storage unit data for bulk storage
    EXPORTING
         I_WHS_ID = lv_i_whs_id
         I_BATCH = lv_i_batch
         I_STOCK_CAT = lv_i_stock_cat
         I_STOCK_IND = lv_i_stock_ind
         I_STOCK_NUM = lv_i_stock_num
         I_SU_ID = lv_i_su_id
         I_STORAGE_TYPE = lv_i_storage_type
         I_BIN = lv_i_bin
         I_POS = lv_i_pos
         I_MATERIAL = lv_i_material
         I_QUANTITY = lv_i_quantity
         I_PLANT = lv_i_plant
         I_STLOC = lv_i_stloc
    TABLES
         T_SU_RECORD = lt_t_su_record
         T_QUANT_RECORDS = lt_t_quant_records
    EXCEPTIONS
        NO_RECORD_FOUND = 1
        WRONG_SU = 2
. " GET_VERIFY_SU_BULK




ABAP code using 7.40 inline data declarations to call FM GET_VERIFY_SU_BULK

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 LGNUM FROM LEIN INTO @DATA(ld_i_whs_id).
 
 
 
"SELECT single CHARG FROM LTAP INTO @DATA(ld_i_batch).
 
"SELECT single BESTQ FROM LTAP INTO @DATA(ld_i_stock_cat).
 
"SELECT single SOBKZ FROM LTAP INTO @DATA(ld_i_stock_ind).
 
"SELECT single SONUM FROM LTAP INTO @DATA(ld_i_stock_num).
 
"SELECT single LENUM FROM LEIN INTO @DATA(ld_i_su_id).
 
 
 
"SELECT single VLTYP FROM LTAP INTO @DATA(ld_i_storage_type).
 
"SELECT single VLPLA FROM LTAP INTO @DATA(ld_i_bin).
 
"SELECT single VPPOS FROM LTAP INTO @DATA(ld_i_pos).
 
"SELECT single MATNR FROM LTAP INTO @DATA(ld_i_material).
 
"SELECT single VSOLA FROM LTAP INTO @DATA(ld_i_quantity).
 
"SELECT single WERKS FROM LTAP INTO @DATA(ld_i_plant).
 
"SELECT single LGORT FROM LTAP INTO @DATA(ld_i_stloc).
 


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!