SAP HR_IT_ITASS_FITE Function Module for









HR_IT_ITASS_FITE is a standard hr it itass fite 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 it itass fite FM, simply by entering the name HR_IT_ITASS_FITE into the relevant SAP transaction such as SE37 or SE38.

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



Function HR_IT_ITASS_FITE 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_IT_ITASS_FITE'"
EXPORTING
P_CALCMOLGA = "
P_TAB_AB = "
* PT_NEWRGDIR = "
P_S_PERNR = "
P_S_MODIF = "
P_S_T001P = "
P_S_T503 = "
P_S_APER = "
P_S_WPBP = "
P_S_P0002 = "
P_S_P0016 = "

CHANGING
P_TAB_COUNTERS = "
P_TAB_ERROR = "
P_TAB_IT = "
P_SUBRU = "
P_ERROR = "
* P_S_MISC = "
P_TAB_CRT = "
.




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_SAPLHRPAYIT_COV_001

IMPORTING Parameters details for HR_IT_ITASS_FITE

P_CALCMOLGA -

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

P_TAB_AB -

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

PT_NEWRGDIR -

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

P_S_PERNR -

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

P_S_MODIF -

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

P_S_T001P -

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

P_S_T503 -

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

P_S_APER -

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

P_S_WPBP -

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

P_S_P0002 -

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

P_S_P0016 -

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

CHANGING Parameters details for HR_IT_ITASS_FITE

P_TAB_COUNTERS -

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

P_TAB_ERROR -

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

P_TAB_IT -

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

P_SUBRU -

Data type: T5ITIU-SUBRU
Optional: No
Call by Reference: Yes

P_ERROR -

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

P_S_MISC -

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

P_TAB_CRT -

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

Copy and paste ABAP code example for HR_IT_ITASS_FITE 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_calcmolga  TYPE T500L-MOLGA, "   
lv_p_tab_counters  TYPE PITCO_TAB_COUNTERS, "   
lv_p_tab_ab  TYPE PTM_AB, "   
lv_pt_newrgdir  TYPE HRPY_TT_RGDIR, "   
lv_p_s_pernr  TYPE PERNR, "   
lv_p_tab_error  TYPE PITCO_TAB_ERROR, "   
lv_p_tab_it  TYPE PITCO_TAB_PC207, "   
lv_p_s_modif  TYPE PC214, "   
lv_p_subru  TYPE T5ITIU-SUBRU, "   
lv_p_s_t001p  TYPE T001P, "   
lv_p_error  TYPE I, "   
lv_p_s_t503  TYPE T503, "   
lv_p_s_aper  TYPE PC2APER, "   
lv_p_s_misc  TYPE PITCO_S_MISC, "   
lv_p_s_wpbp  TYPE PC205, "   
lv_p_tab_crt  TYPE PITCO_TAB_CRT, "   
lv_p_s_p0002  TYPE P0002, "   
lv_p_s_p0016  TYPE P0016. "   

  CALL FUNCTION 'HR_IT_ITASS_FITE'  "
    EXPORTING
         P_CALCMOLGA = lv_p_calcmolga
         P_TAB_AB = lv_p_tab_ab
         PT_NEWRGDIR = lv_pt_newrgdir
         P_S_PERNR = lv_p_s_pernr
         P_S_MODIF = lv_p_s_modif
         P_S_T001P = lv_p_s_t001p
         P_S_T503 = lv_p_s_t503
         P_S_APER = lv_p_s_aper
         P_S_WPBP = lv_p_s_wpbp
         P_S_P0002 = lv_p_s_p0002
         P_S_P0016 = lv_p_s_p0016
    CHANGING
         P_TAB_COUNTERS = lv_p_tab_counters
         P_TAB_ERROR = lv_p_tab_error
         P_TAB_IT = lv_p_tab_it
         P_SUBRU = lv_p_subru
         P_ERROR = lv_p_error
         P_S_MISC = lv_p_s_misc
         P_TAB_CRT = lv_p_tab_crt
. " HR_IT_ITASS_FITE




ABAP code using 7.40 inline data declarations to call FM HR_IT_ITASS_FITE

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 MOLGA FROM T500L INTO @DATA(ld_p_calcmolga).
 
 
 
 
 
 
 
 
"SELECT single SUBRU FROM T5ITIU INTO @DATA(ld_p_subru).
 
 
 
 
 
 
 
 
 
 


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!