RFBITF02 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 RFBITF02 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.
Title: Batch Input for RFBITB01
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
FI_PERIOD_DETERMINE CALL FUNCTION 'FI_PERIOD_DETERMINE' EXPORTING i_budat = p_budat i_bukrs = t001-bukrs IMPORTING e_monat = h_monat.
BDC_OPEN_GROUP CALL FUNCTION 'BDC_OPEN_GROUP' EXPORTING group = p_mapnam user = sy-uname.
BDC_INSERT CALL FUNCTION 'BDC_INSERT' EXPORTING tcode = 'FB01' TABLES dynprotab = bdcdata.
BDC_OPEN_GROUP CALL FUNCTION 'BDC_OPEN_GROUP' EXPORTING group = p_mapnam user = sy-uname.
BDC_INSERT CALL FUNCTION 'BDC_INSERT' EXPORTING tcode = 'FB01' TABLES dynprotab = bdcdata.
POSTING_INTERFACE_START CALL FUNCTION 'POSTING_INTERFACE_START' EXPORTING i_function = function I_GROUP = P_MAPNAM I_MODE = mode I_UPDATE = 'S' I_USER = sy-uname I_XBDCC = xbdcc EXCEPTIONS CLIENT_INCORRECT = 1 FUNCTION_INVALID = 2 GROUP_NAME_MISSING = 3 MODE_INVALID = 4 UPDATE_INVALID = 5 OTHERS = 6 .
POSTING_INTERFACE_DOCUMENT CALL FUNCTION 'POSTING_INTERFACE_DOCUMENT' EXPORTING i_tcode = 'FB01' IMPORTING E_SUBRC = SUBRC E_MSGID = MSGID E_MSGTY = MSGTY E_MSGNO = MSGNO E_MSGV1 = MSGV1 E_MSGV2 = MSGV2 E_MSGV3 = MSGV3 E_MSGV4 = MSGV4 tables t_blntab = blntab t_ftpost = ftpost t_fttax = fttax EXCEPTIONS ACCOUNT_MISSING = 1 COMPANY_CODE_MISSING = 2 POSTING_KEY_INVALID = 3 POSTING_KEY_MISSING = 4 RECORD_TYPE_INVALID = 5 TRANSACTION_CODE_INVALID = 6 AMOUNT_FORMAT_ERROR = 7 TOO_MANY_LINE_ITEMS = 8 COMPANY_CODE_INVALID = 9 SCREEN_NOT_FOUND = 10 NO_AUTHORIZATION = 11 OTHERS = 12 .
POSTING_INTERFACE_END CALL FUNCTION 'POSTING_INTERFACE_END'.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.