SAP HROC_FILL_PAYR_FI_FOR_MANCHECK Function Module for









HROC_FILL_PAYR_FI_FOR_MANCHECK is a standard hroc fill payr fi for mancheck 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 hroc fill payr fi for mancheck FM, simply by entering the name HROC_FILL_PAYR_FI_FOR_MANCHECK into the relevant SAP transaction such as SE37 or SE38.

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



Function HROC_FILL_PAYR_FI_FOR_MANCHECK 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 'HROC_FILL_PAYR_FI_FOR_MANCHECK'"
EXPORTING
P_ASSIGN_CHECK_NO = "
P_PERNR = "
P_SEQNR = "
P_CHECK_DATE = "
P_VERSION = "
MAN_CHECK_TYPE = "
P_ORT01 = "
P_LAND1 = "
P_NAME = "

TABLES
P_WORK_PLACE = "
P_BANK_TRANSFER = "
MAN_CHECK_INFORMATION = "
.




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_SAPLHRPAY99_OC_001 HR Off-Cycle: Customer Enhancement for Bonus Date

IMPORTING Parameters details for HROC_FILL_PAYR_FI_FOR_MANCHECK

P_ASSIGN_CHECK_NO -

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

P_PERNR -

Data type: HROC_DIALOG-EE_NUMBER
Optional: No
Call by Reference: No ( called with pass by value option)

P_SEQNR -

Data type: PC261-SEQNR
Optional: No
Call by Reference: No ( called with pass by value option)

P_CHECK_DATE -

Data type: PC261-PAYDT
Optional: No
Call by Reference: No ( called with pass by value option)

P_VERSION -

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

MAN_CHECK_TYPE -

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

P_ORT01 -

Data type: P0006-ORT01
Optional: No
Call by Reference: No ( called with pass by value option)

P_LAND1 -

Data type: P0006-LAND1
Optional: No
Call by Reference: No ( called with pass by value option)

P_NAME -

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

TABLES Parameters details for HROC_FILL_PAYR_FI_FOR_MANCHECK

P_WORK_PLACE -

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

P_BANK_TRANSFER -

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

MAN_CHECK_INFORMATION -

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

Copy and paste ABAP code example for HROC_FILL_PAYR_FI_FOR_MANCHECK 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:
lt_p_work_place  TYPE STANDARD TABLE OF PC205, "   
lv_p_assign_check_no  TYPE C, "   
lv_p_pernr  TYPE HROC_DIALOG-EE_NUMBER, "   
lt_p_bank_transfer  TYPE STANDARD TABLE OF PC209, "   
lv_p_seqnr  TYPE PC261-SEQNR, "   
lt_man_check_information  TYPE STANDARD TABLE OF PC261, "   
lv_p_check_date  TYPE PC261-PAYDT, "   
lv_p_version  TYPE PC202, "   
lv_man_check_type  TYPE C, "   
lv_p_ort01  TYPE P0006-ORT01, "   
lv_p_land1  TYPE P0006-LAND1, "   
lv_p_name  TYPE C. "   

  CALL FUNCTION 'HROC_FILL_PAYR_FI_FOR_MANCHECK'  "
    EXPORTING
         P_ASSIGN_CHECK_NO = lv_p_assign_check_no
         P_PERNR = lv_p_pernr
         P_SEQNR = lv_p_seqnr
         P_CHECK_DATE = lv_p_check_date
         P_VERSION = lv_p_version
         MAN_CHECK_TYPE = lv_man_check_type
         P_ORT01 = lv_p_ort01
         P_LAND1 = lv_p_land1
         P_NAME = lv_p_name
    TABLES
         P_WORK_PLACE = lt_p_work_place
         P_BANK_TRANSFER = lt_p_bank_transfer
         MAN_CHECK_INFORMATION = lt_man_check_information
. " HROC_FILL_PAYR_FI_FOR_MANCHECK




ABAP code using 7.40 inline data declarations to call FM HROC_FILL_PAYR_FI_FOR_MANCHECK

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 EE_NUMBER FROM HROC_DIALOG INTO @DATA(ld_p_pernr).
 
 
"SELECT single SEQNR FROM PC261 INTO @DATA(ld_p_seqnr).
 
 
"SELECT single PAYDT FROM PC261 INTO @DATA(ld_p_check_date).
 
 
 
"SELECT single ORT01 FROM P0006 INTO @DATA(ld_p_ort01).
 
"SELECT single LAND1 FROM P0006 INTO @DATA(ld_p_land1).
 
 


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!