SAP HR_RU_GET_CONTRACT_INFO Function Module for Get contract info
HR_RU_GET_CONTRACT_INFO is a standard hr ru get contract info SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Get contract info 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 ru get contract info FM, simply by entering the name HR_RU_GET_CONTRACT_INFO into the relevant SAP transaction such as SE37 or SE38.
Function Group: HRPADRUPERSON
Program Name: SAPLHRPADRUPERSON
Main Program: SAPLHRPADRUPERSON
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function HR_RU_GET_CONTRACT_INFO 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_RU_GET_CONTRACT_INFO'"Get contract info.
EXPORTING
PP0016 = "HR Master Record: Infotype 0016 (Contract Elements)
IMPORTING
CTNUM = "Contract number
CTDAT = "Start of contract
CTBEG = "Start Date
CTEND = "End Date
CTTYP = "Contract type
PRBZT = "Probationary period (number)
PRBEH = "Probationary period (unit)
IMPORTING Parameters details for HR_RU_GET_CONTRACT_INFO
PP0016 - HR Master Record: Infotype 0016 (Contract Elements)
Data type: P0016Optional: No
Call by Reference: Yes
EXPORTING Parameters details for HR_RU_GET_CONTRACT_INFO
CTNUM - Contract number
Data type: P0016-CTNUMOptional: No
Call by Reference: Yes
CTDAT - Start of contract
Data type: P0016-CTBEGOptional: No
Call by Reference: Yes
CTBEG - Start Date
Data type: P0016-BEGDAOptional: No
Call by Reference: Yes
CTEND - End Date
Data type: P0016-ENDDAOptional: No
Call by Reference: Yes
CTTYP - Contract type
Data type: P0016-CTTYPOptional: No
Call by Reference: Yes
PRBZT - Probationary period (number)
Data type: P0016-PRBZTOptional: No
Call by Reference: Yes
PRBEH - Probationary period (unit)
Data type: P0016-PRBEHOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for HR_RU_GET_CONTRACT_INFO 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_ctnum | TYPE P0016-CTNUM, " | |||
| lv_pp0016 | TYPE P0016, " | |||
| lv_ctdat | TYPE P0016-CTBEG, " | |||
| lv_ctbeg | TYPE P0016-BEGDA, " | |||
| lv_ctend | TYPE P0016-ENDDA, " | |||
| lv_cttyp | TYPE P0016-CTTYP, " | |||
| lv_prbzt | TYPE P0016-PRBZT, " | |||
| lv_prbeh | TYPE P0016-PRBEH. " |
|   CALL FUNCTION 'HR_RU_GET_CONTRACT_INFO' "Get contract info |
| EXPORTING | ||
| PP0016 | = lv_pp0016 | |
| IMPORTING | ||
| CTNUM | = lv_ctnum | |
| CTDAT | = lv_ctdat | |
| CTBEG | = lv_ctbeg | |
| CTEND | = lv_ctend | |
| CTTYP | = lv_cttyp | |
| PRBZT | = lv_prbzt | |
| PRBEH | = lv_prbeh | |
| . " HR_RU_GET_CONTRACT_INFO | ||
ABAP code using 7.40 inline data declarations to call FM HR_RU_GET_CONTRACT_INFO
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 CTNUM FROM P0016 INTO @DATA(ld_ctnum). | ||||
| "SELECT single CTBEG FROM P0016 INTO @DATA(ld_ctdat). | ||||
| "SELECT single BEGDA FROM P0016 INTO @DATA(ld_ctbeg). | ||||
| "SELECT single ENDDA FROM P0016 INTO @DATA(ld_ctend). | ||||
| "SELECT single CTTYP FROM P0016 INTO @DATA(ld_cttyp). | ||||
| "SELECT single PRBZT FROM P0016 INTO @DATA(ld_prbzt). | ||||
| "SELECT single PRBEH FROM P0016 INTO @DATA(ld_prbeh). | ||||
Search for further information about these or an SAP related objects