RPSENDFI is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This program is used to establish communciation between SAP and the communication station (NT BOX) in order to send data to ADP...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 RPSENDFI 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.
Selection Text: P_COUNT = Com.
Selection Text: PGM = Programs
Selection Text: NO_WAIT = Asynchronous
Selection Text: INPUT9 = Parameter 9
Selection Text: INPUT8 = Parameter 8
Selection Text: INPUT7 = Parameter 7
Selection Text: INPUT6 = Parameter 6
Selection Text: INPUT5 = Parameter 5
Selection Text: INPUT4 = Parameter 4
Selection Text: INPUT3 = Parameter 3
Selection Text: INPUT2 = Parameter 2
Selection Text: INPUT12 = Parameter 12
Selection Text: INPUT11 = Parameter 11
Selection Text: INPUT10 = Parameter 10
Selection Text: INPUT1 = Parameter 1
Selection Text: DEST = Destination (Trans. SM59)
Title: Send files by ADP
Text Symbol: W01 = RPSENDFI not executed: process disconnected
Text Symbol: L01 = This is the content of parameters used by RPSENDFI in this passage:
Text Symbol: E01 = Communication error
Text Symbol: 001 = Error: File does not exist
INCLUDE RPPM1GFI.
INCLUDE RPUPMDP3.
No SAP DATABASE tables are accessed within this REPORT code!
HR_P06I_CHECK_PATH CALL FUNCTION 'HR_P06I_CHECK_PATH' EXPORTING iv_file = input3 EXCEPTIONS unauth_dir = 1 OTHERS = 2.
HR_P06I_CHECK_PATH CALL FUNCTION 'HR_P06I_CHECK_PATH' EXPORTING iv_file = input3 EXCEPTIONS unauth_dir = 1 OTHERS = 2.
HR_P06I_CHECK_PATH CALL FUNCTION 'HR_P06I_CHECK_PATH' EXPORTING iv_file = input2 EXCEPTIONS unauth_dir = 1 OTHERS = 2.
HR_P06I_EXEC_PROG CALL FUNCTION 'HR_P06I_EXEC_PROG' DESTINATION dest EXPORTING in_val = in_val IMPORTING ret_val = processid TABLES i_command = i_command EXCEPTIONS communication_failure = 1 MESSAGE msg_text system_failure = 2 MESSAGE msg_text.
RZL_SLEEP CALL FUNCTION 'RZL_SLEEP' EXPORTING seconds = 5 EXCEPTIONS argument_error = 1 OTHERS = 2.
HRPY_PUST_GET_CONTAINER CALL FUNCTION 'HRPY_PUST_GET_CONTAINER' EXPORTING imp_parcel = pyparaid TABLES container = py_pm_container.
HRPY_PROCESS_FIRE_EVENT CALL FUNCTION 'HRPY_PROCESS_FIRE_EVENT' EXPORTING imp_parcel = pyparaid imp_event_name = 'JOB_ENDED' TABLES imp_container = py_pm_container.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.