SAP HU_PACKING_REFRESH Function Module for NOTRANSL: Zurücksetzen des lokalen Gedächtnisses der Funktionsgruppe
HU_PACKING_REFRESH is a standard hu packing refresh 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: Zurücksetzen des lokalen Gedächtnisses der Funktionsgruppe 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 hu packing refresh FM, simply by entering the name HU_PACKING_REFRESH into the relevant SAP transaction such as SE37 or SE38.
Function Group: V51P
Program Name: SAPLV51P
Main Program: SAPLV51P
Appliation area: V
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function HU_PACKING_REFRESH 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 'HU_PACKING_REFRESH'"NOTRANSL: Zurücksetzen des lokalen Gedächtnisses der Funktionsgruppe.
EXPORTING
* IF_SOFORTAUFTRAG = ' ' "
* IF_GET_HUS = "
* IF_DEQUEUE = "Checkbox
* IT_VENUM = "Table Type for Internal Handling Unit Numbers
IMPORTING
ET_VEKP = "HU Header Table
ET_VEPO = "
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_SAPLV51P_001 User Exit: Automatic Packing - Packaging Material Determination
EXIT_SAPLV51P_002 User Exit: Automatic Packing
EXIT_SAPLV51P_003 Fill Append Fields for Automatic Packing
IMPORTING Parameters details for HU_PACKING_REFRESH
IF_SOFORTAUFTRAG -
Data type: XFELDDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
IF_GET_HUS -
Data type: XFELDOptional: Yes
Call by Reference: Yes
IF_DEQUEUE - Checkbox
Data type: XFELDOptional: Yes
Call by Reference: Yes
IT_VENUM - Table Type for Internal Handling Unit Numbers
Data type: HUM_VENUM_TOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for HU_PACKING_REFRESH
ET_VEKP - HU Header Table
Data type: VSEP_T_VEKPOptional: No
Call by Reference: No ( called with pass by value option)
ET_VEPO -
Data type: VSEP_T_VEPOOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for HU_PACKING_REFRESH 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_et_vekp | TYPE VSEP_T_VEKP, " | |||
| lv_if_sofortauftrag | TYPE XFELD, " SPACE | |||
| lv_et_vepo | TYPE VSEP_T_VEPO, " | |||
| lv_if_get_hus | TYPE XFELD, " | |||
| lv_if_dequeue | TYPE XFELD, " | |||
| lv_it_venum | TYPE HUM_VENUM_T. " |
|   CALL FUNCTION 'HU_PACKING_REFRESH' "NOTRANSL: Zurücksetzen des lokalen Gedächtnisses der Funktionsgruppe |
| EXPORTING | ||
| IF_SOFORTAUFTRAG | = lv_if_sofortauftrag | |
| IF_GET_HUS | = lv_if_get_hus | |
| IF_DEQUEUE | = lv_if_dequeue | |
| IT_VENUM | = lv_it_venum | |
| IMPORTING | ||
| ET_VEKP | = lv_et_vekp | |
| ET_VEPO | = lv_et_vepo | |
| . " HU_PACKING_REFRESH | ||
ABAP code using 7.40 inline data declarations to call FM HU_PACKING_REFRESH
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_if_sofortauftrag) | = ' '. | |||
Search for further information about these or an SAP related objects