SAP HR_COV_PREV_DAY_WITH_KENN2_GET Function Module for Get Day with Multiple Illness Indicator that Is Least Far Back









HR_COV_PREV_DAY_WITH_KENN2_GET is a standard hr cov prev day with kenn2 get SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Get Day with Multiple Illness Indicator that Is Least Far Back 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 cov prev day with kenn2 get FM, simply by entering the name HR_COV_PREV_DAY_WITH_KENN2_GET into the relevant SAP transaction such as SE37 or SE38.

Function Group: HRTIM00COV_HIST
Program Name: SAPLHRTIM00COV_HIST
Main Program:
Appliation area: P
Release date: 29-Oct-2002
Mode(Normal, Remote etc): Normal Function Module
Update:



Function HR_COV_PREV_DAY_WITH_KENN2_GET 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_COV_PREV_DAY_WITH_KENN2_GET'"Get Day with Multiple Illness Indicator that Is Least Far Back
EXPORTING
P_PERNR = "Personnel Number
* BEGDA = '18000101' "Start Date
ENDDA = "End Date

IMPORTING
DAY = "Day in Coverage History Table

TABLES
KENN2_SELTAB = "Selection Table for Multiple Illness Indicator
.




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_SAPLHRTIM00COV_HIST_001 Change Rule Group for Absence Refinement
EXIT_SAPLHRTIM00COV_HIST_002 Determine Seniority
EXIT_SAPLHRTIM00COV_HIST_003 Round Selection of Rules for Absence Refinement
EXIT_SAPLHRTIM00COV_HIST_004 Determine Marker for Absence Day
EXIT_SAPLHRTIM00COV_HIST_005 Refine Table AB
EXIT_SAPLHRTIM00COV_HIST_006 Determine Relevant Period for Change in Marker
EXIT_SAPLHRTIM00COV_HIST_007 Choose Days with Change in Marker
EXIT_SAPLHRTIM00COV_HIST_008 Determine Age

IMPORTING Parameters details for HR_COV_PREV_DAY_WITH_KENN2_GET

P_PERNR - Personnel Number

Data type: PERNR-PERNR
Optional: No
Call by Reference: Yes

BEGDA - Start Date

Data type: SY-DATUM
Default: '18000101'
Optional: Yes
Call by Reference: Yes

ENDDA - End Date

Data type: SY-DATUM
Optional: No
Call by Reference: Yes

EXPORTING Parameters details for HR_COV_PREV_DAY_WITH_KENN2_GET

DAY - Day in Coverage History Table

Data type: PTM_COV_HISTORY
Optional: No
Call by Reference: Yes

TABLES Parameters details for HR_COV_PREV_DAY_WITH_KENN2_GET

KENN2_SELTAB - Selection Table for Multiple Illness Indicator

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

Copy and paste ABAP code example for HR_COV_PREV_DAY_WITH_KENN2_GET 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_day  TYPE PTM_COV_HISTORY, "   
lv_p_pernr  TYPE PERNR-PERNR, "   
lt_kenn2_seltab  TYPE STANDARD TABLE OF PTM_SEL_KENN2, "   
lv_begda  TYPE SY-DATUM, "   '18000101'
lv_endda  TYPE SY-DATUM. "   

  CALL FUNCTION 'HR_COV_PREV_DAY_WITH_KENN2_GET'  "Get Day with Multiple Illness Indicator that Is Least Far Back
    EXPORTING
         P_PERNR = lv_p_pernr
         BEGDA = lv_begda
         ENDDA = lv_endda
    IMPORTING
         DAY = lv_day
    TABLES
         KENN2_SELTAB = lt_kenn2_seltab
. " HR_COV_PREV_DAY_WITH_KENN2_GET




ABAP code using 7.40 inline data declarations to call FM HR_COV_PREV_DAY_WITH_KENN2_GET

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 PERNR FROM PERNR INTO @DATA(ld_p_pernr).
 
 
"SELECT single DATUM FROM SY INTO @DATA(ld_begda).
DATA(ld_begda) = '18000101'.
 
"SELECT single DATUM FROM SY INTO @DATA(ld_endda).
 


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!