RPUTCINR 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 RPUTCINR 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!
WS_UPLOAD * CALL FUNCTION 'WS_UPLOAD' * EXPORTING * FILENAME = p_file * FILETYPE = 'ASC' * TABLES * data_tab = lt_csv.
HR_PK_EXCEL_TO_INTERNAL_TABLE CALL FUNCTION 'HR_PK_EXCEL_TO_INTERNAL_TABLE' EXPORTING filename = p_file i_begin_col = 1 i_begin_row = lv_skip i_end_col = lv_cols i_end_row = lv_rows CHANGING intern = gt_source EXCEPTIONS inconsistent_parameters = 1 upload_ole = 2.
TRINT_SPLIT_FILE_AND_PATH CALL FUNCTION 'TRINT_SPLIT_FILE_AND_PATH' EXPORTING full_name = p_file IMPORTING stripped_name = p_file file_path = lv_path EXCEPTIONS x_error = 1.
KD_GET_FILENAME_ON_F4 * CALL FUNCTION 'KD_GET_FILENAME_ON_F4' * CHANGING * file_name = p_file * EXCEPTIONS * mask_too_long = 1.
GUI_FILE_LOAD_DIALOG CALL FUNCTION 'GUI_FILE_LOAD_DIALOG' EXPORTING window_title = 'Load source file'(t01) default_extension = 'xls' default_file_name = lv_file file_filter = lv_mask initial_directory = lv_path IMPORTING fullpath = lv_full.
HR_TRANSPORT_TABLE CALL FUNCTION 'HR_TRANSPORT_TABLE' EXPORTING table_name = 'T5NKA' tr_task = p_trkorr tr_category = 'SYST' TABLES entries = gt_target EXCEPTIONS internal_error = 1 illegal_task = 2 corr_append_failed = 3 no_customizing_client = 4 OTHERS = 5.
F4IF_INT_TABLE_VALUE_REQUEST CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST' EXPORTING retfield = 'RTTAB' value_org = 'S' TABLES value_tab = lt_restab return_tab = gt_return EXCEPTIONS parameter_error = 1 no_values_found = 2.
F4IF_INT_TABLE_VALUE_REQUEST CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST' EXPORTING retfield = 'TRSET' value_org = 'S' TABLES value_tab = lt_tariff return_tab = gt_return EXCEPTIONS parameter_error = 1 no_values_found = 2.
LVC_FIELDCATALOG_MERGE CALL FUNCTION 'LVC_FIELDCATALOG_MERGE' EXPORTING i_structure_name = 'T5NKA' CHANGING ct_fieldcat = gt_fieldcat_view EXCEPTIONS inconsistent_interface = 1 program_error = 2.
TR_ORDER_CHOICE_CORRECTION CALL FUNCTION 'TR_ORDER_CHOICE_CORRECTION' EXPORTING iv_category = 'SYST' iv_cli_dep = 'X' IMPORTING ev_task = p_trkorr EXCEPTIONS invalid_category = 1 no_correction_selected = 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.