RBNK_ARC_PREPROCESS 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_PREPROCESS 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_COMENT = D .
Selection Text: P_DELTST = D .
Selection Text: P_PROT = D .
Selection Text: P_PROT_O = D .
Selection Text: P_WRIPRD = D .
Selection Text: P_WRITST = D .
Selection Text: S_BTCCUR = D .
Selection Text: S_BTCHNO = D .
Selection Text: S_BTCSUM = D .
Selection Text: S_ITMCNT = D .
Selection Text: S_RULEID = D .
Text Symbol: 001 = Batch details
Text Symbol: 002 = Further Selection Criteria
Text Symbol: M04 = Status history
Text Symbol: M06 = Payments
Text Symbol: M07 = Release history
INCLUDE RBNK_ARC_PREPROCESS_TOP.
INCLUDE RBNK_ARC_PREPROCESS_C01.
INCLUDE RBNK_ARC_PREPROCESS_F01.
INCLUDE RBNK_ARC_PREPROCESS_PBO_DISP.
INCLUDE RBNK_ARC_PREPROCESS_PAI_DISP.
No SAP DATABASE tables are accessed within this REPORT code!
BNK_API_GET_STATUS * CALL FUNCTION 'BNK_API_GET_STATUS' * EXPORTING * i_object_id = l_str_batch_header-status * i_flag_active = cl_bnk_constants=>con_true * IMPORTING ** E_STAT_OBJ = ** E_STAT_PROF = * e_tab_sys_stat = l_bnk_tab_sys_stat ** E_TAB_USR_STAT = ** E_TAB_RC = * .
FI_PERIOD_DETERMINE CALL FUNCTION 'FI_PERIOD_DETERMINE' EXPORTING I_BUDAT = l_str_batch_header-laufd_f I_BUKRS = l_str_batch_header-zbukr IMPORTING E_GJAHR = l_gjahr E_MONAT = l_monat.
FI_PERIOD_CHECK CALL FUNCTION 'FI_PERIOD_CHECK' EXPORTING I_BUKRS = l_str_batch_header-zbukr I_GJAHR = l_gjahr I_KOART = 'K' I_MONAT = L_PERID EXCEPTIONS ERROR_PERIOD = 1 ERROR_PERIOD_ACC = 2 INVALID_INPUT = 3 OTHERS = 4.
FI_PERIOD_CHECK CALL FUNCTION 'FI_PERIOD_CHECK' EXPORTING I_BUKRS = l_str_batch_header-zbukr I_GJAHR = l_gjahr I_KOART = 'D' I_MONAT = L_PERID EXCEPTIONS ERROR_PERIOD = 1 ERROR_PERIOD_ACC = 2 INVALID_INPUT = 3 OTHERS = 4.
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 = '' i_batch_no = l_str_batch_header-batch_no * I_TAB_BATCH_ITEM = IMPORTING e_hbkid = l_str_btc_header_ui-hbkid e_hktid = l_str_btc_header_ui-hktid EXCEPTIONS * READ_ERROR = 1 OTHERS = 0 .
BNK_API_ARC_PREPROCESS CALL FUNCTION 'BNK_API_ARC_PREPROCESS' EXPORTING i_bnk_tab_batch_no = l_tab_batch_no EXCEPTIONS no_success = 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.