RFREXCSCCHIT is a standard Executable ABAP Report 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 RFREXCSCCHIT into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
REXCSCCHIT - Import Tape
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_FPATH = Path and File Name
Title: Import Tape
Text Symbol: 000 = Tape was imported
Text Symbol: D01 = Open Tape
Text Symbol: D02 = Comma-Separated File (*.CSV) | *.csv
Text Symbol: P00 = Tape is being imported ...
Text Symbol: P01 = Old data is deleted
Text Symbol: P02 = Tape is being saved ...
Text Symbol: Q01 = This tape was already imported! Continue with import?
Text Symbol: T01 = Import Tape
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = text-p00.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = text-t01 text_question = text-q01 display_cancel_button = abap_false default_button = 2 popup_type = gc_iconname IMPORTING answer = gd_answer EXCEPTIONS text_not_found = 1 OTHERS = 2.
SAPGUI_PROGRESS_INDICATOR * CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' * EXPORTING * text = text-p01.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = text-p02.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.