SAP HR_PF_TS_EVENT_OVERVIEW_05 Function Module for









HR_PF_TS_EVENT_OVERVIEW_05 is a standard hr pf ts event overview 05 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 hr pf ts event overview 05 FM, simply by entering the name HR_PF_TS_EVENT_OVERVIEW_05 into the relevant SAP transaction such as SE37 or SE38.

Function Group: HRPFD05TESC
Program Name: SAPLHRPFD05TESC
Main Program: SAPLHRPFD05TESC
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function HR_PF_TS_EVENT_OVERVIEW_05 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_PF_TS_EVENT_OVERVIEW_05'"
EXPORTING
MASSN = "
MASSG = "
MOLGA = "
APPLI = "
* FSHOW = 'X' "
* LANGU = SY-LANGU "
W5NDK = "

CHANGING
IINFTY = "
* IERROR = "

EXCEPTIONS
NO_INFOGROUP_FOUND = 1 NO_INFOTYPES_FOUND = 2
.



IMPORTING Parameters details for HR_PF_TS_EVENT_OVERVIEW_05

MASSN -

Data type: T588B-MASSN
Optional: No
Call by Reference: Yes

MASSG -

Data type: T530-MASSG
Optional: No
Call by Reference: Yes

MOLGA -

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

APPLI -

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

FSHOW -

Data type: C
Default: 'X'
Optional: Yes
Call by Reference: Yes

LANGU -

Data type: SY-LANGU
Default: SY-LANGU
Optional: Yes
Call by Reference: Yes

W5NDK -

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

CHANGING Parameters details for HR_PF_TS_EVENT_OVERVIEW_05

IINFTY -

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

IERROR -

Data type: HRERROR_TAB
Optional: Yes
Call by Reference: Yes

EXCEPTIONS details

NO_INFOGROUP_FOUND -

Data type:
Optional: No
Call by Reference: Yes

NO_INFOTYPES_FOUND -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for HR_PF_TS_EVENT_OVERVIEW_05 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_massn  TYPE T588B-MASSN, "   
lv_iinfty  TYPE PCH01_INFTYTAB, "   
lv_no_infogroup_found  TYPE PCH01_INFTYTAB, "   
lv_massg  TYPE T530-MASSG, "   
lv_ierror  TYPE HRERROR_TAB, "   
lv_no_infotypes_found  TYPE HRERROR_TAB, "   
lv_molga  TYPE MOLGA, "   
lv_appli  TYPE P02_APPLI, "   
lv_fshow  TYPE C, "   'X'
lv_langu  TYPE SY-LANGU, "   SY-LANGU
lv_w5ndk  TYPE T5NDK. "   

  CALL FUNCTION 'HR_PF_TS_EVENT_OVERVIEW_05'  "
    EXPORTING
         MASSN = lv_massn
         MASSG = lv_massg
         MOLGA = lv_molga
         APPLI = lv_appli
         FSHOW = lv_fshow
         LANGU = lv_langu
         W5NDK = lv_w5ndk
    CHANGING
         IINFTY = lv_iinfty
         IERROR = lv_ierror
    EXCEPTIONS
        NO_INFOGROUP_FOUND = 1
        NO_INFOTYPES_FOUND = 2
. " HR_PF_TS_EVENT_OVERVIEW_05




ABAP code using 7.40 inline data declarations to call FM HR_PF_TS_EVENT_OVERVIEW_05

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 MASSN FROM T588B INTO @DATA(ld_massn).
 
 
 
"SELECT single MASSG FROM T530 INTO @DATA(ld_massg).
 
 
 
 
 
DATA(ld_fshow) = 'X'.
 
"SELECT single LANGU FROM SY INTO @DATA(ld_langu).
DATA(ld_langu) = SY-LANGU.
 
 


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!