SAP HR_CONVERT_TCRTA_TCRTB_US Function Module for tcrt/tcrta









HR_CONVERT_TCRTA_TCRTB_US is a standard hr convert tcrta tcrtb 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 tcrt/tcrta 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 tcrta tcrtb us FM, simply by entering the name HR_CONVERT_TCRTA_TCRTB_US into the relevant SAP transaction such as SE37 or SE38.

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



Function HR_CONVERT_TCRTA_TCRTB_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_TCRTA_TCRTB_US'"tcrt/tcrta
EXPORTING
IMP_CLIENT = "
IMP_CLUSTERID = "
IMP_EMPLOYEENUMBER = "
IMP_RGDIR_ENTRY = "

CHANGING
PAYROLL_RESULT = "Abrechnungsergebnis
.



IMPORTING Parameters details for HR_CONVERT_TCRTA_TCRTB_US

IMP_CLIENT -

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

IMP_CLUSTERID -

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

IMP_EMPLOYEENUMBER -

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

IMP_RGDIR_ENTRY -

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

CHANGING Parameters details for HR_CONVERT_TCRTA_TCRTB_US

PAYROLL_RESULT - Abrechnungsergebnis

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

Copy and paste ABAP code example for HR_CONVERT_TCRTA_TCRTB_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_imp_clusterid  TYPE T500L-RELID, "   
lv_imp_employeenumber  TYPE PC200-PERNR, "   
lv_imp_rgdir_entry  TYPE PC261. "   

  CALL FUNCTION 'HR_CONVERT_TCRTA_TCRTB_US'  "tcrt/tcrta
    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
. " HR_CONVERT_TCRTA_TCRTB_US




ABAP code using 7.40 inline data declarations to call FM HR_CONVERT_TCRTA_TCRTB_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!