MPRAPF01 is a standard ABAP INCLUDE available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter MPRAPF01 into the relevant SAP transactions such as SE38 or SE80
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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
HR_DISPLAY_BASIC_LIST CALL FUNCTION 'HR_DISPLAY_BASIC_LIST' EXPORTING basic_list_title = text-ttl "Einstellen ..."
ENQUEUE_EPT752F CALL FUNCTION 'ENQUEUE_EPT752F' EXPORTING mode_t752f = 'E' mandt = sy-mandt * otype = 'P ' "XDPK006716 pernr = act_number EXCEPTIONS foreign_lock = 1 system_failure = 2 OTHERS = 3.
DEQUEUE_EPT752F CALL FUNCTION 'DEQUEUE_EPT752F' EXPORTING mode_t752f = 'E' mandt = sy-mandt * otype = 'P ' "XDPK006716 pernr = act_number EXCEPTIONS OTHERS = 1.
BAPI_EMPLOYEE_CHECKEXISTENCE CALL FUNCTION 'BAPI_EMPLOYEE_CHECKEXISTENCE' EXPORTING number = pspar-pernr IMPORTING return = ls_return.
HR_RCF_ASSIGN_EE_TO_CANDIDATE CALL FUNCTION 'HR_RCF_ASSIGN_EE_TO_CANDIDATE' DESTINATION rcfrfc EXPORTING employee_id = pspar-pernr candidate_id = applicantnumber.
HR_GET_BUSINESS_ADD_IN CALL FUNCTION 'HR_GET_BUSINESS_ADD_IN' EXPORTING exit_name = sap_exit_name IMPORTING is_implemented = sap_exit_implemented CHANGING instance = sap_exit_instance.
DEQUEUE_EPT752F CALL FUNCTION 'DEQUEUE_EPT752F' EXPORTING mode_t752f = 'E' mandt = sy-mandt * otype = 'P ' "XDPK006716 pernr = act_number EXCEPTIONS OTHERS = 1.
ENQUEUE_EPT752F CALL FUNCTION 'ENQUEUE_EPT752F' EXPORTING mode_t752f = 'E' mandt = sy-mandt * otype = 'P ' "XDPK006716 pernr = act_number EXCEPTIONS foreign_lock = 1 system_failure = 2 OTHERS = 3.
DEQUEUE_EPT752F CALL FUNCTION 'DEQUEUE_EPT752F' EXPORTING mode_t752f = 'E' mandt = sy-mandt * otype = 'P ' "XDPK006716 pernr = act_number EXCEPTIONS OTHERS = 1.
RFC_READ_DESTINATION_TYPE CALL FUNCTION 'RFC_READ_DESTINATION_TYPE' EXPORTING destination = p_rfc authority_check = ' ' bypass_buf = ' ' EXCEPTIONS destination_not_exist = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.