RNWCHTMSPART 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 RNWCHTMSPART 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.
INCLUDE RNWCHITMSPART.
INCLUDE RNSSEINR.
No SAP DATABASE tables are accessed within this REPORT code!
ISH_EINRI_CHECK call function 'ISH_EINRI_CHECK' exporting ss_einri = se_einri importing ss_tn01 = tn01 exceptions others = 1.
KD_GET_FILENAME_ON_F4 call function 'KD_GET_FILENAME_ON_F4' exporting * FIELD_NAME = ' ' static = 'X' mask = ',Textfiles, *.txt'
ISH_FILE_VALIDATE_NAME CALL FUNCTION 'ISH_FILE_VALIDATE_NAME' CHANGING c_filename = pa_file.
ISH_COUNTRY_VERSION_GET call function 'ISH_COUNTRY_VERSION_GET' importing ss_cvers = cvers.
ISH_CALL_LIST_HEAD call function 'ISH_CALL_LIST_HEAD' exporting einri = se_einri line_size = 120 title_lin1 = text-p01 title_lin2 = text-p09.
WS_UPLOAD * call function 'WS_UPLOAD' * exporting * filename = $filename * filetype = 'ASC' * tables * data_tab = $upload_table * exceptions * conversion_error = 1 * file_open_error = 2 * file_read_error = 3 * invalid_table_width = 4 * invalid_type = 5 * no_batch = 6 * unknown_error = 7 * others = 8.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.