RPRPAYMR 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 RPRPAYMR 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.
Title: Main Routine for Report RPRPAY00: Transfer TRV to PAYROLL
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
ALE_BAPI_GET_UNIQUE_RECEIVER CALL FUNCTION 'ALE_BAPI_GET_UNIQUE_RECEIVER' EXPORTING object = 'BUS7001' method = 'POST' IMPORTING receiver = receiver TABLES filterobjects_values = filterobjects_values EXCEPTIONS error_in_filterobjects = 1 error_in_ale_customizing = 2 not_unique_receiver = 3 no_rfc_destination_maintained = 4 OTHERS = 5.
ALE_ACTIVE CALL FUNCTION 'ALE_ACTIVE' EXPORTING mestyp = mestyp idoctp = idoctp IMPORTING sw_ale = sw_ale EXCEPTIONS OTHERS = 0.
CHECK_AUTH_AUTHP CALL FUNCTION 'CHECK_AUTH_AUTHP' EXPORTING datum = sy-datum pernr = pernr-pernr is_head = ls_head "MAWK000377 is_perio = ls_perio "MAWK000377 EXCEPTIONS * OTHERS = 1. "WKUK042958
HRCA_PAYROLLTRAVELEXPNSESPOST CALL FUNCTION 'HRCA_PAYROLLTRAVELEXPNSESPOST' TABLES t_head_all = t_head_all t_perio_all = t_perio_all te_version_with_key = te-version_with_key statu_with_key = statu_with_key aend_with_key = aend_with_key konti_with_key = konti_with_key rot_with_key = rot_with_key v0split_with_key = v0split_with_key EXCEPTIONS error_in_filterobjects = 1 error_in_ale_customizing = 2 error_creating_idocs = 3 error_converting_curr_amount = 4 OTHERS = 5.
DEQUEUE_ALL CALL FUNCTION 'DEQUEUE_ALL' * EXPORTING * _SYNCHRON = ' ' .
HRCA_PAYROLLTRAVELEXPNSESPOST CALL FUNCTION 'HRCA_PAYROLLTRAVELEXPNSESPOST' TABLES t_head_all = t_head_all t_perio_all = t_perio_all te_version_with_key = te-version_with_key statu_with_key = statu_with_key aend_with_key = aend_with_key konti_with_key = konti_with_key rot_with_key = rot_with_key v0split_with_key = v0split_with_key EXCEPTIONS error_in_filterobjects = 1 error_in_ale_customizing = 2 error_creating_idocs = 3 error_converting_curr_amount = 4 OTHERS = 5.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.