RFFORIO7 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 RFFORIO7 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!
ENQUEUE_E_TABLE CALL FUNCTION 'ENQUEUE_E_TABLE' EXPORTING tabname = 'TBACN ' varkey = up_lock EXCEPTIONS foreign_lock = 04 system_failure = 08.
DEQUEUE_E_TABLE CALL FUNCTION 'DEQUEUE_E_TABLE' EXPORTING tabname = 'TBACN ' varkey = up_lock.
COMPUTE_CHECKNUM_NO_001 CALL FUNCTION 'COMPUTE_CHECKNUM_NO_001' EXPORTING i_check_correct = 'X' CHANGING c_value = up_kidno EXCEPTIONS number_too_long = 1 number_too_short = 2 number_not_valid = 3 number_not_correct = 4 OTHERS = 5.
COMPUTE_CHECKNUM_NO_002 CALL FUNCTION 'COMPUTE_CHECKNUM_NO_002' EXPORTING i_check_correct = 'X' CHANGING c_value = up_kidno EXCEPTIONS number_too_long = 1 number_too_short = 2 number_not_valid = 3 remainder_10 = 4 number_not_correct = 5 OTHERS = 6.
CONVERT_BANK_ACCOUNT_NUMBER CALL FUNCTION 'CONVERT_BANK_ACCOUNT_NUMBER' EXPORTING i_banks = reguh-zbnks i_bankk = reguh-zbnky i_bankn = reguh-zbnkn i_bkont = reguh-zbkon i_bkref = reguh-bkref i_bankl = reguh-zbnkl IMPORTING e_bankn_long = dtatno03-bkdet.
ENQUEUE_E_TABLE CALL FUNCTION 'ENQUEUE_E_TABLE' EXPORTING tabname = 'TBACN_NO ' varkey = up_lock EXCEPTIONS foreign_lock = 04 system_failure = 08.
DEQUEUE_E_TABLE CALL FUNCTION 'DEQUEUE_E_TABLE' EXPORTING tabname = 'TBACN_NO ' varkey = up_lock.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.