SAP HR_COV_MARK_TAB_WITH_AWART_GET Function Module for List of All Markers with Selected Absence Types









HR_COV_MARK_TAB_WITH_AWART_GET is a standard hr cov mark tab with awart 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 List of All Markers with Selected Absence Types 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 mark tab with awart get FM, simply by entering the name HR_COV_MARK_TAB_WITH_AWART_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_MARK_TAB_WITH_AWART_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_MARK_TAB_WITH_AWART_GET'"List of All Markers with Selected Absence Types
EXPORTING
P_PERNR = "Personnel Number
BEGDA = "Start Date
ENDDA = "End Date

TABLES
MARK_TAB = "Table of Entries in Coverage History
AWART_SELTAB = "Selection Table for Absence Type
.




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_MARK_TAB_WITH_AWART_GET

P_PERNR - Personnel Number

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

BEGDA - Start Date

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

ENDDA - End Date

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

TABLES Parameters details for HR_COV_MARK_TAB_WITH_AWART_GET

MARK_TAB - Table of Entries in Coverage History

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

AWART_SELTAB - Selection Table for Absence Type

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

Copy and paste ABAP code example for HR_COV_MARK_TAB_WITH_AWART_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_p_pernr  TYPE PERNR-PERNR, "   
lt_mark_tab  TYPE STANDARD TABLE OF PTM_MARKTAB, "   
lv_begda  TYPE SY-DATUM, "   
lt_awart_seltab  TYPE STANDARD TABLE OF PTM_SEL_AWART, "   
lv_endda  TYPE SY-DATUM. "   

  CALL FUNCTION 'HR_COV_MARK_TAB_WITH_AWART_GET'  "List of All Markers with Selected Absence Types
    EXPORTING
         P_PERNR = lv_p_pernr
         BEGDA = lv_begda
         ENDDA = lv_endda
    TABLES
         MARK_TAB = lt_mark_tab
         AWART_SELTAB = lt_awart_seltab
. " HR_COV_MARK_TAB_WITH_AWART_GET




ABAP code using 7.40 inline data declarations to call FM HR_COV_MARK_TAB_WITH_AWART_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).
 
 
"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!