IHC_TEST_PROC_EXTERNAL_BANKSTA is a standard ABAP INCLUDE 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 IHC_TEST_PROC_EXTERNAL_BANKSTA 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
GUI_DOWNLOAD CALL FUNCTION 'GUI_DOWNLOAD' EXPORTING FILENAME = l_filename TABLES DATA_TAB = lt_bank_statement EXCEPTIONS OTHERS = 1.
GUI_DOWNLOAD CALL FUNCTION 'GUI_DOWNLOAD' EXPORTING FILENAME = l_filename TABLES DATA_TAB = lt_item EXCEPTIONS OTHERS = 1.
FI_HOUSEBANK_READ CALL FUNCTION 'FI_HOUSEBANK_READ' EXPORTING IC_BUKRS = u_company_code IC_HBKID = u_house_bank_id IMPORTING ES_T012 = ls_t012.
FI_HOUSEBANK_ACCOUNT_READ CALL FUNCTION 'FI_HOUSEBANK_ACCOUNT_READ' EXPORTING IC_BUKRS = u_company_code IC_HBKID = u_house_bank_id IC_HKTID = u_account_id IMPORTING ES_T012K = ls_t012k EC_RCACCOUNT = l_rc.
RFC_GET_TABLE_ENTRIES CALL FUNCTION 'RFC_GET_TABLE_ENTRIES' DESTINATION u_rfc_dest EXPORTING BYPASS_BUFFER = 'X' FROM_KEY = l_key MAX_ENTRIES = 1 TABLE_NAME = 'T012' TABLES ENTRIES = lt_entries EXCEPTIONS INTERNAL_ERROR = 1 TABLE_EMPTY = 2 TABLE_NOT_FOUND = 3 OTHERS = 4.
RFC_GET_TABLE_ENTRIES CALL FUNCTION 'RFC_GET_TABLE_ENTRIES' DESTINATION u_rfc_dest EXPORTING BYPASS_BUFFER = 'X' FROM_KEY = l_key MAX_ENTRIES = 1 TABLE_NAME = 'T012K' TABLES ENTRIES = lt_entries EXCEPTIONS INTERNAL_ERROR = 1 TABLE_EMPTY = 2 TABLE_NOT_FOUND = 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.