SAP HRPBSDEVASEN_ZURECHNG_WEIGHT60 Function Module for
HRPBSDEVASEN_ZURECHNG_WEIGHT60 is a standard hrpbsdevasen zurechng weight60 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 hrpbsdevasen zurechng weight60 FM, simply by entering the name HRPBSDEVASEN_ZURECHNG_WEIGHT60 into the relevant SAP transaction such as SE37 or SE38.
Function Group: HRPBSDEVASEN_ZURECHNGSZEIT
Program Name: SAPLHRPBSDEVASEN_ZURECHNGSZEIT
Main Program: SAPLHRPBSDEVASEN_ZURECHNGSZEIT
Appliation area: P
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function HRPBSDEVASEN_ZURECHNG_WEIGHT60 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 'HRPBSDEVASEN_ZURECHNG_WEIGHT60'".
EXPORTING
ID_PERNR = "
IS_CALCVERSION_RGVH = "
ID_EINVF = "
IS_P69DA4_DUR = "
IS_LOG_WEIGHT = "
IMPORTING
ES_WEIGHT = "
ES_LOG_WEIGHT = "
EXCEPTIONS
E_PRECONDITION = 1 E_OTHERS = 2
IMPORTING Parameters details for HRPBSDEVASEN_ZURECHNG_WEIGHT60
ID_PERNR -
Data type: PERNR_DOptional: No
Call by Reference: Yes
IS_CALCVERSION_RGVH -
Data type: HRDEPBSVASENS_CALCVERSION_RGVHOptional: No
Call by Reference: Yes
ID_EINVF -
Data type: EINVFOptional: No
Call by Reference: Yes
IS_P69DA4_DUR -
Data type: PSEN_DURATION_DECOptional: No
Call by Reference: Yes
IS_LOG_WEIGHT -
Data type: HRDEPBSVASENS_LOG_P13A1Optional: No
Call by Reference: Yes
EXPORTING Parameters details for HRPBSDEVASEN_ZURECHNG_WEIGHT60
ES_WEIGHT -
Data type: PSEN_WEIGHTOptional: No
Call by Reference: Yes
ES_LOG_WEIGHT -
Data type: HRDEPBSVASENS_LOG_P13A1N91_WGTOptional: No
Call by Reference: Yes
EXCEPTIONS details
E_PRECONDITION -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
E_OTHERS -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for HRPBSDEVASEN_ZURECHNG_WEIGHT60 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_id_pernr | TYPE PERNR_D, " | |||
| lv_es_weight | TYPE PSEN_WEIGHT, " | |||
| lv_e_precondition | TYPE PSEN_WEIGHT, " | |||
| lv_e_others | TYPE PSEN_WEIGHT, " | |||
| lv_es_log_weight | TYPE HRDEPBSVASENS_LOG_P13A1N91_WGT, " | |||
| lv_is_calcversion_rgvh | TYPE HRDEPBSVASENS_CALCVERSION_RGVH, " | |||
| lv_id_einvf | TYPE EINVF, " | |||
| lv_is_p69da4_dur | TYPE PSEN_DURATION_DEC, " | |||
| lv_is_log_weight | TYPE HRDEPBSVASENS_LOG_P13A1. " |
|   CALL FUNCTION 'HRPBSDEVASEN_ZURECHNG_WEIGHT60' " |
| EXPORTING | ||
| ID_PERNR | = lv_id_pernr | |
| IS_CALCVERSION_RGVH | = lv_is_calcversion_rgvh | |
| ID_EINVF | = lv_id_einvf | |
| IS_P69DA4_DUR | = lv_is_p69da4_dur | |
| IS_LOG_WEIGHT | = lv_is_log_weight | |
| IMPORTING | ||
| ES_WEIGHT | = lv_es_weight | |
| ES_LOG_WEIGHT | = lv_es_log_weight | |
| EXCEPTIONS | ||
| E_PRECONDITION = 1 | ||
| E_OTHERS = 2 | ||
| . " HRPBSDEVASEN_ZURECHNG_WEIGHT60 | ||
ABAP code using 7.40 inline data declarations to call FM HRPBSDEVASEN_ZURECHNG_WEIGHT60
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