SAP HR_CONVERT_DFRT_US Function Module for Convert DFRT when start release is 4.0B









HR_CONVERT_DFRT_US is a standard hr convert dfrt us SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Convert DFRT when start release is 4.0B 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 convert dfrt us FM, simply by entering the name HR_CONVERT_DFRT_US into the relevant SAP transaction such as SE37 or SE38.

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



Function HR_CONVERT_DFRT_US 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_CONVERT_DFRT_US'"Convert DFRT when start release is 4.0B
EXPORTING
IMP_CLIENT = "Client
IMP_CLUSTERID = "Area identification on import/export database PCL2
IMP_EMPLOYEENUMBER = "Personnel Number
IMP_RGDIR_ENTRY = "Cluster Directory (For Export and Import of Payroll Results)

CHANGING
PAYROLL_RESULT = "HR-PAY-US: Definition of payroll result

EXCEPTIONS
IMPORT_MISMATCH = 1
.



IMPORTING Parameters details for HR_CONVERT_DFRT_US

IMP_CLIENT - Client

Data type: PCL2-CLIENT
Optional: No
Call by Reference: Yes

IMP_CLUSTERID - Area identification on import/export database PCL2

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

IMP_EMPLOYEENUMBER - Personnel Number

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

IMP_RGDIR_ENTRY - Cluster Directory (For Export and Import of Payroll Results)

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

CHANGING Parameters details for HR_CONVERT_DFRT_US

PAYROLL_RESULT - HR-PAY-US: Definition of payroll result

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

EXCEPTIONS details

IMPORT_MISMATCH - No conversion possible

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for HR_CONVERT_DFRT_US 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_imp_client  TYPE PCL2-CLIENT, "   
lv_payroll_result  TYPE PAYUS_RESULT, "   
lv_import_mismatch  TYPE PAYUS_RESULT, "   
lv_imp_clusterid  TYPE T500L-RELID, "   
lv_imp_employeenumber  TYPE PC200-PERNR, "   
lv_imp_rgdir_entry  TYPE PC261. "   

  CALL FUNCTION 'HR_CONVERT_DFRT_US'  "Convert DFRT when start release is 4.0B
    EXPORTING
         IMP_CLIENT = lv_imp_client
         IMP_CLUSTERID = lv_imp_clusterid
         IMP_EMPLOYEENUMBER = lv_imp_employeenumber
         IMP_RGDIR_ENTRY = lv_imp_rgdir_entry
    CHANGING
         PAYROLL_RESULT = lv_payroll_result
    EXCEPTIONS
        IMPORT_MISMATCH = 1
. " HR_CONVERT_DFRT_US




ABAP code using 7.40 inline data declarations to call FM HR_CONVERT_DFRT_US

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 CLIENT FROM PCL2 INTO @DATA(ld_imp_client).
 
 
 
"SELECT single RELID FROM T500L INTO @DATA(ld_imp_clusterid).
 
"SELECT single PERNR FROM PC200 INTO @DATA(ld_imp_employeenumber).
 
 


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!