SAP Reports / Programs | Personnel Management | Personnel Administration(PA-PA) SAP PA

RPLEVENT SAP ABAP Report - Overview of prebookings for personnel actions







RPLEVENT is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This report generates a list of the current employees that have been designated for personnel actions and, in addition, allows the necessary actions to be directly carried out...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.

If you would like to execute this report or see the full code listing simply enter RPLEVENT into the relevant SAP transactions such as SE38 or SE80


ABAP code to call this SAP report using the submit statement

This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.






SUBMIT RPLEVENT. "Basic submit
SUBMIT RPLEVENT AND RETURN. "Return to original report after report execution complete
SUBMIT RPLEVENT VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Title: Overview of prebookings for personnel actions
001 Prno. Name Date Action


INCLUDES used within this REPORT RPLEVENT

INCLUDE RPLEVENT_10. "XFYAHRK025319
INCLUDE RPLEVENT_20. "XFYAHRK025319
INCLUDE RPLEVENT_30. "XFYAHRK025319


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

RH_READ_DATA_FOR_INTEGRATION CALL FUNCTION 'RH_READ_DATA_FOR_INTEGRATION' EXPORTING ACT_PERNR = T_PERSON-PERNR EXCEPTIONS NO_DATA_FOUND = 1 OTHERS = 2.

HRCA_COSTCENTER_TEXT CALL FUNCTION 'HRCA_COSTCENTER_TEXT' EXPORTING CONTROLLINGAREA = T_PERSON-KOKRS COSTCENTER = T_PERSON-KOSTL READ_DATE = SY-DATUM LANGUAGE = SY-LANGU IMPORTING NAME = COSTCENTER_TEXT EXCEPTIONS NOTHING_FOUND = 1 OTHERS = 2.

HRCA_COMPANYCODE_GETDETAIL CALL FUNCTION 'HRCA_COMPANYCODE_GETDETAIL' EXPORTING COMPANYCODE = T_PERSON-BUKRS LANGUAGE = SY-LANGU IMPORTING COMP_NAME = CC_NAME EXCEPTIONS NOT_FOUND = 1 OTHERS = 2.

HRCA_BUSINESSAREA_GETDETAIL CALL FUNCTION 'HRCA_BUSINESSAREA_GETDETAIL' EXPORTING BUS_AREA = T_PERSON-GSBER LANGUAGE = SY-LANGU IMPORTING BUS_AR_DES = BUSINESSAREA_TEXT EXCEPTIONS NOT_FOUND = 1 OTHERS = 2.

RH_READ_PERS_ORG_STRU CALL FUNCTION 'RH_READ_PERS_ORG_STRU' EXPORTING BEGDA = T_PERSON-ORGDAT ENDDA = T_PERSON-ORGDAT PERNR = T_PERSON-PERNR IMPORTED_PLVAR = T_PERSON-PLVAR PLSTE = T_PERSON-OBJID TABLES STRU_TAB = STRUCTAB EXCEPTIONS INTEGRATION_NOT_ACTIVE = 1 PARAMETERS_MISSING = 2 OTHERS = 3.

HRCA_COSTCENTER_GETDETAIL CALL FUNCTION 'HRCA_COSTCENTER_GETDETAIL' EXPORTING CONTROLLINGAREA = T_PERSON_NEW-KOKRS COSTCENTER = T_PERSON_NEW-KOSTL READ_DATE = T_PERSON-ORGDAT LANGUAGE = SY-LANGU IMPORTING NAME = TXT_KOSTL_NEW COMPANYCODE = T_PERSON_NEW-BUKRS BUSINESSAREA = T_PERSON_NEW-GSBER EXCEPTIONS NOTHING_FOUND = 1 OTHERS = 2.

HRCA_COMPANYCODE_GETDETAIL CALL FUNCTION 'HRCA_COMPANYCODE_GETDETAIL' EXPORTING COMPANYCODE = T_PERSON_NEW-BUKRS LANGUAGE = SY-LANGU IMPORTING COMP_NAME = TXT_BUKRS_NEW EXCEPTIONS NOT_FOUND = 1 OTHERS = 2.

HRCA_BUSINESSAREA_GETDETAIL CALL FUNCTION 'HRCA_BUSINESSAREA_GETDETAIL' EXPORTING BUS_AREA = T_PERSON_NEW-GSBER LANGUAGE = SY-LANGU IMPORTING BUS_AR_DES = TXT_GSBER_NEW EXCEPTIONS NOT_FOUND = 1 OTHERS = 2.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name RPLEVENT or its description.