SAP HRCM_EVAL_DATA_GET Function Module for
HRCM_EVAL_DATA_GET is a standard hrcm eval data get 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 hrcm eval data get FM, simply by entering the name HRCM_EVAL_DATA_GET into the relevant SAP transaction such as SE37 or SE38.
Function Group: HRCMP00GENERAL
Program Name: SAPLHRCMP00GENERAL
Main Program: SAPLHRCMP00GENERAL
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function HRCM_EVAL_DATA_GET 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 'HRCM_EVAL_DATA_GET'".
EXPORTING
PERNR = "
KEY_DATE = "
* CONTP = "
* REACTION = ' ' "
IMPORTING
EVPTS = "
EVGRD = "
EVGRD_TXT = "
BMARK = "
TABLES
* IT0001 = "
* ERROR_TABLE = "
EXCEPTIONS
NO_ACTIVE_PLVAR = 1 NO_INFTY_0001 = 2 NO_INFTY_1050 = 3
IMPORTING Parameters details for HRCM_EVAL_DATA_GET
PERNR -
Data type: P0000-PERNROptional: No
Call by Reference: No ( called with pass by value option)
KEY_DATE -
Data type: SY-DATUMOptional: No
Call by Reference: No ( called with pass by value option)
CONTP -
Data type: T778U-SUBTYOptional: Yes
Call by Reference: No ( called with pass by value option)
REACTION -
Data type: SY-MSGTYDefault: SPACE
Optional: Yes
Call by Reference: Yes
EXPORTING Parameters details for HRCM_EVAL_DATA_GET
EVPTS -
Data type: P1050-EVPTSOptional: No
Call by Reference: Yes
EVGRD -
Data type: P1050-EVGRDOptional: No
Call by Reference: Yes
EVGRD_TXT -
Data type: T710GT-LTEXTOptional: No
Call by Reference: Yes
BMARK -
Data type: P1050-BMARKOptional: No
Call by Reference: Yes
TABLES Parameters details for HRCM_EVAL_DATA_GET
IT0001 -
Data type: P0001Optional: Yes
Call by Reference: No ( called with pass by value option)
ERROR_TABLE -
Data type: RPBENERROptional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NO_ACTIVE_PLVAR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_INFTY_0001 -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_INFTY_1050 -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for HRCM_EVAL_DATA_GET 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_evpts | TYPE P1050-EVPTS, " | |||
| lv_pernr | TYPE P0000-PERNR, " | |||
| lt_it0001 | TYPE STANDARD TABLE OF P0001, " | |||
| lv_no_active_plvar | TYPE P0001, " | |||
| lv_evgrd | TYPE P1050-EVGRD, " | |||
| lv_key_date | TYPE SY-DATUM, " | |||
| lt_error_table | TYPE STANDARD TABLE OF RPBENERR, " | |||
| lv_no_infty_0001 | TYPE RPBENERR, " | |||
| lv_contp | TYPE T778U-SUBTY, " | |||
| lv_evgrd_txt | TYPE T710GT-LTEXT, " | |||
| lv_no_infty_1050 | TYPE T710GT, " | |||
| lv_bmark | TYPE P1050-BMARK, " | |||
| lv_reaction | TYPE SY-MSGTY. " SPACE |
|   CALL FUNCTION 'HRCM_EVAL_DATA_GET' " |
| EXPORTING | ||
| PERNR | = lv_pernr | |
| KEY_DATE | = lv_key_date | |
| CONTP | = lv_contp | |
| REACTION | = lv_reaction | |
| IMPORTING | ||
| EVPTS | = lv_evpts | |
| EVGRD | = lv_evgrd | |
| EVGRD_TXT | = lv_evgrd_txt | |
| BMARK | = lv_bmark | |
| TABLES | ||
| IT0001 | = lt_it0001 | |
| ERROR_TABLE | = lt_error_table | |
| EXCEPTIONS | ||
| NO_ACTIVE_PLVAR = 1 | ||
| NO_INFTY_0001 = 2 | ||
| NO_INFTY_1050 = 3 | ||
| . " HRCM_EVAL_DATA_GET | ||
ABAP code using 7.40 inline data declarations to call FM HRCM_EVAL_DATA_GET
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 EVPTS FROM P1050 INTO @DATA(ld_evpts). | ||||
| "SELECT single PERNR FROM P0000 INTO @DATA(ld_pernr). | ||||
| "SELECT single EVGRD FROM P1050 INTO @DATA(ld_evgrd). | ||||
| "SELECT single DATUM FROM SY INTO @DATA(ld_key_date). | ||||
| "SELECT single SUBTY FROM T778U INTO @DATA(ld_contp). | ||||
| "SELECT single LTEXT FROM T710GT INTO @DATA(ld_evgrd_txt). | ||||
| "SELECT single BMARK FROM P1050 INTO @DATA(ld_bmark). | ||||
| "SELECT single MSGTY FROM SY INTO @DATA(ld_reaction). | ||||
| DATA(ld_reaction) | = ' '. | |||
Search for further information about these or an SAP related objects