SAP HR_PAY_ATTRIBUTE_BY_REASON Function Module for Derive payroll attributes Japan from payroll reason









HR_PAY_ATTRIBUTE_BY_REASON is a standard hr pay attribute by reason SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Derive payroll attributes Japan from payroll reason 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 pay attribute by reason FM, simply by entering the name HR_PAY_ATTRIBUTE_BY_REASON into the relevant SAP transaction such as SE37 or SE38.

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



Function HR_PAY_ATTRIBUTE_BY_REASON 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_PAY_ATTRIBUTE_BY_REASON'"Derive payroll attributes Japan from payroll reason
EXPORTING
IN_PAY_REASON = "

IMPORTING
OUT_PAY_CATEGORY = "
OUT_PAY_TYPE = "
OUT_PAY_ID = "

EXCEPTIONS
PAY_REASON_DOES_NOT_EXIST = 1 PAY_CATEGORY_NOT_ASSIGNED = 2 PAY_CATEGORY_DOES_NOT_EXIST = 3
.



IMPORTING Parameters details for HR_PAY_ATTRIBUTE_BY_REASON

IN_PAY_REASON -

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

EXPORTING Parameters details for HR_PAY_ATTRIBUTE_BY_REASON

OUT_PAY_CATEGORY -

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

OUT_PAY_TYPE -

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

OUT_PAY_ID -

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

EXCEPTIONS details

PAY_REASON_DOES_NOT_EXIST -

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

PAY_CATEGORY_NOT_ASSIGNED -

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

PAY_CATEGORY_DOES_NOT_EXIST -

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

Copy and paste ABAP code example for HR_PAY_ATTRIBUTE_BY_REASON 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_in_pay_reason  TYPE PAY_OCRSN, "   
lv_out_pay_category  TYPE PAY_OCCAT, "   
lv_pay_reason_does_not_exist  TYPE PAY_OCCAT, "   
lv_out_pay_type  TYPE PAYTY, "   
lv_pay_category_not_assigned  TYPE PAYTY, "   
lv_out_pay_id  TYPE PAYID, "   
lv_pay_category_does_not_exist  TYPE PAYID. "   

  CALL FUNCTION 'HR_PAY_ATTRIBUTE_BY_REASON'  "Derive payroll attributes Japan from payroll reason
    EXPORTING
         IN_PAY_REASON = lv_in_pay_reason
    IMPORTING
         OUT_PAY_CATEGORY = lv_out_pay_category
         OUT_PAY_TYPE = lv_out_pay_type
         OUT_PAY_ID = lv_out_pay_id
    EXCEPTIONS
        PAY_REASON_DOES_NOT_EXIST = 1
        PAY_CATEGORY_NOT_ASSIGNED = 2
        PAY_CATEGORY_DOES_NOT_EXIST = 3
. " HR_PAY_ATTRIBUTE_BY_REASON




ABAP code using 7.40 inline data declarations to call FM HR_PAY_ATTRIBUTE_BY_REASON

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.

 
 
 
 
 
 
 


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!