SAP Reports / Programs

RBNK_ARC_READ SAP ABAP Report - Program RBNK_ARC_READ







RBNK_ARC_READ 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 RBNK_ARC_READ into the relevant SAP transactions such as SE38 or SE80


ABAP code to call this SAP report using the submit statement

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.






SUBMIT RBNK_ARC_READ. "Basic submit
SUBMIT RBNK_ARC_READ AND RETURN. "Return to original report after report execution complete
SUBMIT RBNK_ARC_READ VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: S_BTCCUR = D .
Selection Text: S_BTCHNO = D .
Selection Text: S_BTCSUM = D .
Selection Text: S_CRDATE = D .
Selection Text: S_ITMCNT = D .
Selection Text: S_RULEID = D .
Title: Program RBNK_ARC_READ


INCLUDES used within this REPORT RBNK_ARC_READ

INCLUDE RBNK_ARC_READ_TOP . " GLOBAL DATA


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

ARCHIVE_OPEN_FOR_READ CALL FUNCTION 'ARCHIVE_OPEN_FOR_READ' EXPORTING * ARCHIVE_DOCUMENT = '000000' * ARCHIVE_NAME = ' ' object = g_arc_object * MAINTAIN_INDEX = ' ' IMPORTING archive_handle = g_arc_handle * TABLES * ARCHIVE_FILES = * SELECTED_FILES = EXCEPTIONS * FILE_ALREADY_OPEN = 1 * FILE_IO_ERROR = 2 * INTERNAL_ERROR = 3 * NO_FILES_AVAILABLE = 4 * OBJECT_NOT_FOUND = 5 * OPEN_ERROR = 6 * NOT_AUTHORIZED = 7 OTHERS = 1 .

ARCHIVE_GET_NEXT_OBJECT CALL FUNCTION 'ARCHIVE_GET_NEXT_OBJECT' EXPORTING archive_handle = g_arc_handle * IMPORTING * OBJECT_ID = * OBJECT_OFFSET = * ARCHIVE_NAME = * COMPR_OBJECT_LENGTH = * SESSION = EXCEPTIONS * END_OF_FILE = 1 * FILE_IO_ERROR = 2 * INTERNAL_ERROR = 3 * OPEN_ERROR = 4 * WRONG_ACCESS_TO_ARCHIVE = 5 OTHERS = 1 .

ARCHIVE_READ_OBJECT_BY_HANDLE CALL FUNCTION 'ARCHIVE_READ_OBJECT_BY_HANDLE' EXPORTING iv_handle = g_arc_handle * IV_READ_CLASS_DATA = 'CONTEXT' CHANGING ct_obj_data = g_tab_object_data .

RELEASELOG_READ_ARCHIVE_OBJECT CALL FUNCTION 'RELEASELOG_READ_ARCHIVE_OBJECT' EXPORTING archive_handle = g_arc_handle * CLIENT = SY-MANDT TABLES t_rel_log_h = l_tab_rel_log_h t_rel_log_d = l_tab_rel_log_d * EXCEPTIONS * WRONG_ACCESS_TO_ARCHIVE = 1 * OTHERS = 2 .

CRM_STATUS_READ_ARCHIVE_OBJECT CALL FUNCTION 'CRM_STATUS_READ_ARCHIVE_OBJECT' EXPORTING archive_handle = g_arc_handle * I_MANDT = SY-MANDT * I_OBJNR = ' ' * I_APPEND = ' ' TABLES t_jsto = l_tab_crm_jsto t_jcdo = l_tab_crm_jcdo t_jest = l_tab_crm_jest t_jcds = l_tab_crm_jcds * EXCEPTIONS * WRONG_ACCESS_TO_ARCHIVE = 1 * NOT_ENOUGH_INFO = 2 * OTHERS = 3 .

ARCHIVE_CLOSE_FILE CALL FUNCTION 'ARCHIVE_CLOSE_FILE' EXPORTING archive_handle = g_arc_handle * EXCEPTIONS * INTERNAL_ERROR = 1 * WRONG_ACCESS_TO_ARCHIVE = 2 * OTHERS = 3 .

BNK_API_GET_UI_TEXT_LONG CALL FUNCTION 'BNK_API_GET_UI_TEXT_LONG' EXPORTING i_object_id = l_str_batch_header-status i_flg_usr_stat = 'X' i_flg_only_active = 'X' i_langu = sy-langu IMPORTING e_sys_stat_line = l_status_id * E_USR_STAT_LINE = e_sys_stat_line_long = l_str_btc_header_ui-status_txt.

BNK_UI_HOUSEBANK_BTC CALL FUNCTION 'BNK_UI_HOUSEBANK_BTC' EXPORTING i_archive = cl_bnk_constants=>con_true i_tab_batch_item = l_tab_batch_item IMPORTING e_hbkid = l_str_btc_header_ui-hbkid e_hktid = l_str_btc_header_ui-hktid EXCEPTIONS OTHERS = 0.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name RBNK_ARC_READ or its description.