RN2SAVETBSSM is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Transfer Text Module to PC as Text File...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter RN2SAVETBSSM 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: P_ORGFA = D .
Selection Text: P_EINRI = D .
Selection Text: P_FLAG2 = Radio Button - Departmental OU
Selection Text: P_FLAG1 = Radio Button - Institution
Selection Text: P_FILE = File
Title: Save Markers as PC File
Text Symbol: T02 = Input Help: Departmental OU
Text Symbol: T01 = i.s.h.med: Copy Markers as PC File
Text Symbol: M04 = No markers were transferred
Text Symbol: M03 = With Values (Total):
Text Symbol: M02 = Transferred Markers:
Text Symbol: M01 = Transfer Markers into File:
Text Symbol: E06 = Report must run in the dialog
Text Symbol: E05 = Error During Download
Text Symbol: E02 = Unknown Departmental OU
Text Symbol: E01 = Unknown Institution
Text Symbol: 100 = No data exist!
Text Symbol: 007 = Files to Transfer
Text Symbol: 004 = Departmental OU
Text Symbol: 003 = Institution
Text Symbol: 002 = Select a radio button for the assignment level
Text Symbol: 001 = Export Markers to PC File
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
ISH_N2_FILENAME_GET CALL FUNCTION 'ISH_N2_FILENAME_GET' EXPORTING ss_file_extension = '*' CHANGING ss_filename = p_file EXCEPTIONS selection_cancel = 1 OTHERS = 2.
ISH_GRAPHIC_ORGID_SELECT CALL FUNCTION 'ISH_GRAPHIC_ORGID_SELECT' EXPORTING ambes = '*' fazuw = 'X' pfzuw = '*' graph_title = 'Eingabehilfe: Fachliche OE'(t02) einri = p_einri freig = 'X' start_orgfa = p_orgfa loekz = space no_bauid = space sperr = space IMPORTING selected_orgid = p_orgfa EXCEPTIONS bauid_not_in_nbau = 1 einri_not_in_tn01 = 2 no_hierarchy = 3 orgid_not_in_norg = 4 OTHERS = 5.
ISH_N2_WRITE call function 'ISH_N2_WRITE' exporting i_title = 'i.s.h.med: Sprungmarken als PC-Datei kopieren'(t01)
ISH_N2_TBS_ADM_CHECK CALL FUNCTION 'ISH_N2_TBS_ADM_CHECK' EXPORTING ss_level = l_level ss_user = '' ss_orgdo = '' ss_orgfa = p_orgfa ss_einri = p_einri EXCEPTIONS error = 1 OTHERS = 2.
ISH_READ_NORG CALL FUNCTION 'ISH_READ_NORG' EXPORTING einri = p_einri orgid = p_orgfa IMPORTING norg_e = ls_norg_tmp EXCEPTIONS missing_orgid = 1 OTHERS = 2.
ISH_N2_GUI_DOWNLOAD CALL FUNCTION 'ISH_N2_GUI_DOWNLOAD' EXPORTING ss_filename = p_file * SS_FILESIZE = ss_popup = ' ' ss_filetype = 'ASC' IMPORTING ss_new_filename = p_file TABLES ss_data_tab = g_data_tab EXCEPTIONS cancel = 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.