RIARCNTA 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 RIARCNTA 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_COMM = Comment
Selection Text: P_CREATE = Generate Archive File
Selection Text: P_DETAIL = Detail Log
Selection Text: P_TEST = Test Mode
Selection Text: S_EQUNR = Equipment
Selection Text: S_TPLNR = Functional Location
Selection Text: S_KANTE = D .
Selection Text: S_KANTYP = D .
Selection Text: S_NETID = D .
Title: Object link: Generate archive file
Text Symbol: 001 = Client
Text Symbol: 002 = Link
Text Symbol: 003 = Link category
Text Symbol: 004 = Network ID
Text Symbol: 005 = Equipment
Text Symbol: 006 = Functional Loc.
Text Symbol: 100 = TestMode
Text Symbol: 101 = Status
Text Symbol: B01 = Control Data
INCLUDE RIARCNTT.
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 = p_test create_archive_file = p_create object = archive_object comments = p_comm importing archive_handle = g_archive_handle.
ARCHIVE_NEW_OBJECT call function 'ARCHIVE_NEW_OBJECT' exporting archive_handle = g_archive_handle object_id = archive_object.
ARCHIVE_PUT_RECORD call function 'ARCHIVE_PUT_RECORD' exporting archive_handle = g_archive_handle record = g_inet_rec record_flags = archive_flags record_structure = structure_inet.
ARCHIVE_SAVE_OBJECT call function 'ARCHIVE_SAVE_OBJECT' exporting archive_handle = g_archive_handle.
TR_APPEND_LOG call function 'TR_APPEND_LOG' tables xmsg = g_prot_tab exceptions others = 0.
TR_FLUSH_LOG call function 'TR_FLUSH_LOG'.
ARCHIVE_GIVE_STATISTICS * call function 'ARCHIVE_GIVE_STATISTICS' * exporting * archive_handle = g_archive_handle * tables * table = g_stat_tab.
ARCHIVE_WRITE_STATISTICS call function 'ARCHIVE_WRITE_STATISTICS' exporting archive_handle = g_archive_handle statistics_only_per_run = true.
ARCHIVE_CLOSE_FILE call function 'ARCHIVE_CLOSE_FILE' exporting archive_handle = g_archive_handle.
ARCHIVE_PUT_RECORD call function 'ARCHIVE_PUT_RECORD' exporting archive_handle = i_archive_handle record = l_inetx_rec record_flags = archive_flags record_structure = structure_inetx.
SELECT_TEXT call function 'SELECT_TEXT' exporting id = text_id language = language name = l_text_name object = text_object importing entries = l_entries tables selections = l_selections_tab.
TEXT_ARCHIVE_OBJECT call function 'TEXT_ARCHIVE_OBJECT' exporting archive_handle = i_archive_handle id = l_selections_rec-tdid language = l_selections_rec-tdspras name = l_selections_rec-tdname object = l_selections_rec-tdobject object_delete_flag = true.
STATUS_ARCHIVE_OBJECT call function 'STATUS_ARCHIVE_OBJECT' exporting archive_handle = i_archive_handle object_delete_flag = true i_objnr = i_objnr.
CHANGEDOCU_ARCHIVE_OBJECT call function 'CHANGEDOCU_ARCHIVE_OBJECT' exporting archive_handle = i_archive_handle objectclass = objectclass objectid = l_objectid object_delete_flag = true.
CLASSIFY_ARCHIVE_OBJECT call function 'CLASSIFY_ARCHIVE_OBJECT' exporting archive_handle = i_archive_handle object = l_object ptable = objecttable object_delete_flag = true.
CV_OBJL_ARCHIVE_OBJECT call function 'CV_OBJL_ARCHIVE_OBJECT' exporting archive_handle = i_archive_handle object_delete_flag = true archive_object = i_archive_object i_object = object i_object_key = l_object_key exceptions wrong_access_to_archive = 1 not_found = 2 no_authority = 3 others = 4.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.