RGCDOW30 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 RGCDOW30 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: PA_COMP = Company extract
Selection Text: PA_GSBER = Business area extract
Selection Text: PA_RCOMP = Company
Selection Text: PA_RVERS = Version
Title: FI-LC: FI Data Extract Download
Text Symbol: 001 = Download business area extract
Text Symbol: 002 = Download company extract
Text Symbol: 101 = Data extract file(s) was(were)_
Text Symbol: 102 = transferred to the PC_
Text Symbol: 103 = The download was abborted_
Text Symbol: 200 = Download
Text Symbol: 201 = Run the download on a
Text Symbol: 202 = UNIX system.
Text Symbol: 203 = Are you sure you want to
Text Symbol: 204 = save under UNIX?
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
G_GET_FILENAME CALL FUNCTION 'G_GET_FILENAME' "xhe118306 EXPORTING e_rcomp = v_rcomp e_rvers = v_rvers e_param1 = v_rcomp "xhe311097 e_param2 = v_rvers "xhe311097 e_use_pserver = ' ' IMPORTING i_filename = ld_filename i_fileformat = ld_fileformat EXCEPTIONS file_not_found = 01.
WS_QUERY CALL FUNCTION 'WS_QUERY' EXPORTING environment = space filename = space query = 'WS' winid = space IMPORTING return = umgebung EXCEPTIONS inv_query.
POPUP_TO_CONFIRM_WITH_MESSAGE CALL FUNCTION 'POPUP_TO_CONFIRM_WITH_MESSAGE' EXPORTING defaultoption = 'Y' diagnosetext1 = text-201 diagnosetext2 = text-202 diagnosetext3 = space textline1 = text-203 textline2 = text-204 titel = text-200 IMPORTING answer = answer.
G_GET_FILENAME CALL FUNCTION 'G_GET_FILENAME' EXPORTING e_rcomp = v_rcomp e_rvers = v_rvers e_param1 = v_rcomp "xhe311097 e_param2 = v_rvers "xhe311097 IMPORTING i_filename = ld_filename i_fileformat = ld_fileformat EXCEPTIONS file_not_found = 01.
DOWNLOAD * CALL FUNCTION 'DOWNLOAD' * EXPORTING * BIN_FILESIZE = ' ' * CODEPAGE = ' ' * FILENAME = LD_FILENAME * FILETYPE = 'ASC' * ITEM = ' ' * MODE = ' ' * WK1_N_FORMAT = ' ' * WK1_N_SIZE = ' ' * WK1_T_FORMAT = ' ' * WK1_T_SIZE = ' ' * FILEMASK_MASK = ' ' * FILEMASK_TEXT = ' ' * FILETYPE_NO_CHANGE = ' ' * IMPORTING * ACT_FILENAME = FILENAME ** ACT_FILETYPE = * FILESIZE = FILELENGTH * CANCEL = ANSWER * TABLES * DATA_TAB = PCSATZ.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.