RM06IW30 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 RM06IW30 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.
Title: Write Program: Archiving of Info Records
Text Symbol: 001 = Test Run
Text Symbol: 003 = Archive file;; created on ;;
Text Symbol: 004 = Following info records were archived:
Text Symbol: 005 = Following info records would be archived:
Text Symbol: 006 = Info Rec. POrg Plnt InfoRecType
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
ARCHIVE_OPEN_FOR_WRITE CALL FUNCTION 'ARCHIVE_OPEN_FOR_WRITE' EXPORTING call_delete_job_in_test_mode = loesch create_archive_file = archive_file object = object comments = p_text "513812 IMPORTING archive_handle = handle.
ARCHIVE_PUT_RECORD CALL FUNCTION 'ARCHIVE_PUT_RECORD' EXPORTING archive_handle = handle record = a_record record_flags = ' ' record_structure = a_structure.
ARCHIVE_NEW_OBJECT CALL FUNCTION 'ARCHIVE_NEW_OBJECT' EXPORTING archive_handle = handle object_id = object_id.
ARCHIVE_SAVE_OBJECT CALL FUNCTION 'ARCHIVE_SAVE_OBJECT' EXPORTING archive_handle = handle.
ARCHIVE_CLOSE_FILE CALL FUNCTION 'ARCHIVE_CLOSE_FILE' EXPORTING archive_handle = handle.
ARCHIVE_WRITE_STATISTICS CALL FUNCTION 'ARCHIVE_WRITE_STATISTICS' EXPORTING archive_handle = handle.
ARCHIVE_GET_INFORMATION CALL FUNCTION 'ARCHIVE_GET_INFORMATION' EXPORTING archive_handle = handle IMPORTING archive_creation_date = date archive_creation_release = release archive_creation_system = system archive_name = name object = object.
CHANGEDOCU_ARCHIVE_OBJECT CALL FUNCTION 'CHANGEDOCU_ARCHIVE_OBJECT' EXPORTING archive_handle = handle objectclass = cdhdr-objectclas objectid = cdhdr-objectid.
SELECT_TEXT CALL FUNCTION 'SELECT_TEXT' EXPORTING id = stxh-tdid language = stxh-tdspras name = l_tdname object = im_object IMPORTING entries = txt_entries TABLES selections = txt_tab.
TEXT_ARCHIVE_OBJECT CALL FUNCTION 'TEXT_ARCHIVE_OBJECT' EXPORTING archive_handle = handle client = sy-mandt id = txt_tab-tdid language = txt_tab-tdspras name = txt_tab-tdname object = txt_tab-tdobject object_delete_flag = im_mode.
CHANGEDOCU_ARCHIVE_OBJECT CALL FUNCTION 'CHANGEDOCU_ARCHIVE_OBJECT' EXPORTING archive_handle = handle objectclass = cdhdr-objectclas objectid = cdhdr-objectid.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.