RPCPSAT0_FORMS 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 RPCPSAT0_FORMS 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!
GUID_CREATE CALL FUNCTION 'GUID_CREATE' IMPORTING ev_guid_32 = lv_guid_batch.
HR_CZ_READ_PYRES_INTERVAL CALL FUNCTION 'HR_CZ_READ_PYRES_INTERVAL' EXPORTING pernr = pv_pernr mode = lv_last begda = pv_begda endda = pv_endda tprun = 'X' TABLES runs = lt_runs myrg = lt_myrg rtdet = lt_rtdet.
ENQUEUE_ET5TPENSAV CALL FUNCTION 'ENQUEUE_ET5TPENSAV' EXPORTING ident = p_iden _wait = 'X' EXCEPTIONS foreign_lock = 1.
DEQUEUE_ET5TPENSAV CALL FUNCTION 'DEQUEUE_ET5TPENSAV' EXPORTING ident = p_iden.
DYNP_VALUES_READ CALL FUNCTION 'DYNP_VALUES_READ' EXPORTING dyname = lv_report dynumb = sy-dynnr TABLES dynpfields = lt_dynr EXCEPTIONS invalid_abapworkarea invalid_dynprofield invalid_dynproname invalid_dynpronummer invalid_request no_fielddescription invalid_parameter undefind_error double_conversion stepl_not_found.
F4IF_GET_SHLP_DESCR CALL FUNCTION 'F4IF_GET_SHLP_DESCR' EXPORTING shlpname = 'HRCZ_T5TPENSAV_GUID_B' IMPORTING shlp = lt_shlp.
F4IF_START_VALUE_REQUEST CALL FUNCTION 'F4IF_START_VALUE_REQUEST' EXPORTING shlp = lt_shlp TABLES return_values = lt_ret_val.
DYNP_VALUES_UPDATE CALL FUNCTION 'DYNP_VALUES_UPDATE' EXPORTING dyname = lv_report dynumb = sy-dynnr TABLES dynpfields = lt_dynr.
SAPGUI_PROGRESS_INDICATOR * call function 'SAPGUI_PROGRESS_INDICATOR' * exporting ** PERCENTAGE = 0 * text = text * exceptions * others = 1.
GUI_DOWNLOAD CALL FUNCTION 'GUI_DOWNLOAD' EXPORTING bin_filesize = lv_xml_size filename = lv_fullname filetype = 'BIN' TABLES data_tab = lt_xml_bin EXCEPTIONS file_write_error = 1 no_batch = 2 gui_refuse_filetransfer = 3 invalid_type = 4 no_authority = 5 unknown_error = 6 header_not_allowed = 7 separator_not_allowed = 8 filesize_not_allowed = 9 header_too_long = 10 dp_error_create = 11 dp_error_send = 12 dp_error_write = 13 unknown_dp_error = 14 access_denied = 15 dp_out_of_memory = 16 disk_full = 17 dp_timeout = 18 file_not_found = 19 dataprovider_exception = 20 control_flush_error = 21 OTHERS = 22.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.