SAP SHP_WEIVOL_SINGLE_ITEM Function Module for NOTRANSL: Gewicht/Volumen einer Lieferungsposition ermitteln
SHP_WEIVOL_SINGLE_ITEM is a standard shp weivol single item 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: Gewicht/Volumen einer Lieferungsposition ermitteln 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 shp weivol single item FM, simply by entering the name SHP_WEIVOL_SINGLE_ITEM into the relevant SAP transaction such as SE37 or SE38.
Function Group: LE_SHP_WEIGHT_VOLUME
Program Name: SAPLLE_SHP_WEIGHT_VOLUME
Main Program: SAPLLE_SHP_WEIGHT_VOLUME
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function SHP_WEIVOL_SINGLE_ITEM 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 'SHP_WEIVOL_SINGLE_ITEM'"NOTRANSL: Gewicht/Volumen einer Lieferungsposition ermitteln.
EXPORTING
* IS_QUAN_OLD = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* IS_QUAN_NEW = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* IS_WEIVOL_OLD = "DE-EN-LANG-SWITCH-NO-TRANSLATION
IS_CONTROL = "Control Parameters for Determining Weight/Vol. for Dlv Items
* IF_MATNR = "Material Number
* IF_VRKME = "Sales Unit
IMPORTING
ES_WEIVOL_NEW = "DE-EN-LANG-SWITCH-NO-TRANSLATION
EXCEPTIONS
INTERNAL_ERROR = 1 WRONG_CALL = 2 NEGATIV_INPUT = 3
IMPORTING Parameters details for SHP_WEIVOL_SINGLE_ITEM
IS_QUAN_OLD - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: SHP_WEIVOL_SET_OF_QUANOptional: Yes
Call by Reference: Yes
IS_QUAN_NEW - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: SHP_WEIVOL_SET_OF_QUANOptional: Yes
Call by Reference: Yes
IS_WEIVOL_OLD - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: SHP_WEIGHT_VOLUMOptional: Yes
Call by Reference: Yes
IS_CONTROL - Control Parameters for Determining Weight/Vol. for Dlv Items
Data type: SHP_WEIVOL_ITEM_CONTROLOptional: No
Call by Reference: Yes
IF_MATNR - Material Number
Data type: MATNROptional: Yes
Call by Reference: Yes
IF_VRKME - Sales Unit
Data type: VRKMEOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for SHP_WEIVOL_SINGLE_ITEM
ES_WEIVOL_NEW - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: SHP_WEIGHT_VOLUMOptional: No
Call by Reference: Yes
EXCEPTIONS details
INTERNAL_ERROR - Internal error
Data type:Optional: No
Call by Reference: Yes
WRONG_CALL - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type:Optional: No
Call by Reference: Yes
NEGATIV_INPUT - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for SHP_WEIVOL_SINGLE_ITEM 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_is_quan_old | TYPE SHP_WEIVOL_SET_OF_QUAN, " | |||
| lv_es_weivol_new | TYPE SHP_WEIGHT_VOLUM, " | |||
| lv_internal_error | TYPE SHP_WEIGHT_VOLUM, " | |||
| lv_wrong_call | TYPE SHP_WEIGHT_VOLUM, " | |||
| lv_is_quan_new | TYPE SHP_WEIVOL_SET_OF_QUAN, " | |||
| lv_is_weivol_old | TYPE SHP_WEIGHT_VOLUM, " | |||
| lv_negativ_input | TYPE SHP_WEIGHT_VOLUM, " | |||
| lv_is_control | TYPE SHP_WEIVOL_ITEM_CONTROL, " | |||
| lv_if_matnr | TYPE MATNR, " | |||
| lv_if_vrkme | TYPE VRKME. " |
|   CALL FUNCTION 'SHP_WEIVOL_SINGLE_ITEM' "NOTRANSL: Gewicht/Volumen einer Lieferungsposition ermitteln |
| EXPORTING | ||
| IS_QUAN_OLD | = lv_is_quan_old | |
| IS_QUAN_NEW | = lv_is_quan_new | |
| IS_WEIVOL_OLD | = lv_is_weivol_old | |
| IS_CONTROL | = lv_is_control | |
| IF_MATNR | = lv_if_matnr | |
| IF_VRKME | = lv_if_vrkme | |
| IMPORTING | ||
| ES_WEIVOL_NEW | = lv_es_weivol_new | |
| EXCEPTIONS | ||
| INTERNAL_ERROR = 1 | ||
| WRONG_CALL = 2 | ||
| NEGATIV_INPUT = 3 | ||
| . " SHP_WEIVOL_SINGLE_ITEM | ||
ABAP code using 7.40 inline data declarations to call FM SHP_WEIVOL_SINGLE_ITEM
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