SAP HR_SK_CALC_COEF_2002 Function Module for Výpoèet koeficientov PPD pre rok 2002 (novelizácia zákonníka práce)
HR_SK_CALC_COEF_2002 is a standard hr sk calc coef 2002 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Výpoèet koeficientov PPD pre rok 2002 (novelizácia zákonníka práce) 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 hr sk calc coef 2002 FM, simply by entering the name HR_SK_CALC_COEF_2002 into the relevant SAP transaction such as SE37 or SE38.
Function Group: 3SK2
Program Name: SAPL3SK2
Main Program: SAPL3SK2
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function HR_SK_CALC_COEF_2002 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 'HR_SK_CALC_COEF_2002'"Výpoèet koeficientov PPD pre rok 2002 (novelizácia zákonníka práce).
EXPORTING
BEGDA = "
ENDDA = "
TABLES
T0000 = "Personál.kmeò.záznam Infotyp 0000 (opatrenia)
T0001 = "Personál.kmeò.záznam infotyp 0001(org.priradenie)
T0007 = "Personál.kmeò.záznam infotyp 0007 (plánovaná prac.doba)
PPHIFI = "Tabuµka príchodov/odchodov (fcia. modul RP_HIRE_FIRE)
TSK06 = "©truktúra pre prenos koeficientov PPD v 04/2002
IMPORTING Parameters details for HR_SK_CALC_COEF_2002
BEGDA -
Data type: SY-DATUMOptional: No
Call by Reference: No ( called with pass by value option)
ENDDA -
Data type: SY-DATUMOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for HR_SK_CALC_COEF_2002
T0000 - Personál.kmeò.záznam Infotyp 0000 (opatrenia)
Data type: P0000Optional: No
Call by Reference: Yes
T0001 - Personál.kmeò.záznam infotyp 0001(org.priradenie)
Data type: P0001Optional: No
Call by Reference: Yes
T0007 - Personál.kmeò.záznam infotyp 0007 (plánovaná prac.doba)
Data type: P0007Optional: No
Call by Reference: Yes
PPHIFI - Tabuµka príchodov/odchodov (fcia. modul RP_HIRE_FIRE)
Data type: PHIFIOptional: No
Call by Reference: Yes
TSK06 - ©truktúra pre prenos koeficientov PPD v 04/2002
Data type: PSK06Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for HR_SK_CALC_COEF_2002 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_begda | TYPE SY-DATUM, " | |||
| lt_t0000 | TYPE STANDARD TABLE OF P0000, " | |||
| lv_endda | TYPE SY-DATUM, " | |||
| lt_t0001 | TYPE STANDARD TABLE OF P0001, " | |||
| lt_t0007 | TYPE STANDARD TABLE OF P0007, " | |||
| lt_pphifi | TYPE STANDARD TABLE OF PHIFI, " | |||
| lt_tsk06 | TYPE STANDARD TABLE OF PSK06. " |
|   CALL FUNCTION 'HR_SK_CALC_COEF_2002' "Výpoèet koeficientov PPD pre rok 2002 (novelizácia zákonníka práce) |
| EXPORTING | ||
| BEGDA | = lv_begda | |
| ENDDA | = lv_endda | |
| TABLES | ||
| T0000 | = lt_t0000 | |
| T0001 | = lt_t0001 | |
| T0007 | = lt_t0007 | |
| PPHIFI | = lt_pphifi | |
| TSK06 | = lt_tsk06 | |
| . " HR_SK_CALC_COEF_2002 | ||
ABAP code using 7.40 inline data declarations to call FM HR_SK_CALC_COEF_2002
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 DATUM FROM SY INTO @DATA(ld_begda). | ||||
| "SELECT single DATUM FROM SY INTO @DATA(ld_endda). | ||||
Search for further information about these or an SAP related objects