RCCSBISC 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 RCCSBISC into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
OS42 - Process Transfer File
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: LOG_NAM = Logical File Name
Title: Display Batch Input Data from Sequential File
Text Symbol: 001 = Read File from Application Server
Text Symbol: 002 = Read File from External Application Server
Text Symbol: 003 = Server Name
Text Symbol: 004 = Read File from Presentation Server
Text Symbol: 005 = Location of File to Be Imported
Text Symbol: 010 = New Folder
Text Symbol: 011 = BOM Header
Text Symbol: 012 = BOM Item
Text Symbol: 013 = & Transactions in File &
Text Symbol: 014 = Unknown
Text Symbol: 015 = BOM Subitem
Text Symbol: 020 = Save data file?
Text Symbol: 021 = Data was changed
Text Symbol: 022 = Yes
Text Symbol: 023 = No
Text Symbol: 024 = Save?
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
FILE_GET_NAME call function 'FILE_GET_NAME' exporting logical_filename = log_nam importing file_name = ds_name exceptions file_not_found = 04 others = 08.
TH_SELECT_SERVER call function 'TH_SELECT_SERVER' exporting services = msxxlist-msgtypes importing server = server exceptions no_server_list_received = 04 no_server_selected = 08.
TH_SERVER_LIST call function 'TH_SERVER_LIST' exporting services = msxxlist-msgtypes tables list = server_tab.
CS_BI_GET_BOM_FILE_REMOTE_HOST call function 'CS_BI_GET_BOM_FILE_REMOTE_HOST' destination server exporting bom_filename = ds_name log_filename = log_nam "n 1524781 tables bom_file = pc_data_tab exceptions logical_filename_not_found = 01 "n 1524781 validation_failed = 02 "n 1524781 open_failure = 04 file_contains_no_data = 08.
FILE_VALIDATE_NAME CALL FUNCTION 'FILE_VALIDATE_NAME' EXPORTING LOGICAL_FILENAME = gc_logfile_ldm CHANGING PHYSICAL_FILENAME = ds_name EXCEPTIONS LOGICAL_FILENAME_NOT_FOUND = 1 VALIDATION_FAILED = 2.
BI_EDIT_DATA call function 'BI_EDIT_DATA' exporting list_title = title alter_allowed = konst_x create_tables_statement = konst_x importing save_pressed = l_saved tables disp_data = datedit changing data_altered = altered exceptions no_tables_statement = 1 others = 2.
POPUP_TO_DECIDE call function 'POPUP_TO_DECIDE' "JA Sicherungspopup exporting defaultoption = '1' textline2 = 'Datenfile zurückschreiben?'(020) textline1 = 'Die Daten wurden geändert'(021) text_option1 = 'Ja'(022) text_option2 = 'Nein'(023) titel = 'Sichern ?'(024) importing answer = antwort exceptions others = 1.
FILE_VALIDATE_NAME CALL FUNCTION 'FILE_VALIDATE_NAME' EXPORTING LOGICAL_FILENAME = gc_logfile_ldm CHANGING PHYSICAL_FILENAME = ds_name EXCEPTIONS LOGICAL_FILENAME_NOT_FOUND = 1 VALIDATION_FAILED = 2.
CLBA_UPDATE_FILE_REMOTE_HOST call function 'CLBA_UPDATE_FILE_REMOTE_HOST' destination server exporting file_name = ds_name tables data_tab = datedit exceptions open_failure = 1 others = 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.