RFBITF01_NACC 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 RFBITF01_NACC 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!
CALCULATE_TAX_FROM_GROSSAMOUNT CALL FUNCTION 'CALCULATE_TAX_FROM_GROSSAMOUNT' EXPORTING i_bukrs = i_tinso-bukrs i_mwskz = i_tinso-spskz i_waers = i_tinso-waers i_wrbtr = i_tinso-spese TABLES t_mwdat = mwdata EXCEPTIONS bukrs_not_found = 01 country_not_found = 02 mwskz_not_defined = 03 mwskz_not_valid = 04.
CALCULATE_TAX_FROM_NET_AMOUNT CALL FUNCTION 'CALCULATE_TAX_FROM_NET_AMOUNT' EXPORTING i_bukrs = i_tinso-bukrs i_mwskz = i_tinso-spskz i_waers = i_tinso-waers i_wrbtr = i_tinso-spese TABLES t_mwdat = mwdata EXCEPTIONS bukrs_not_found = 01 country_not_found = 02 mwskz_not_defined = 03 mwskz_not_valid = 04.
BDC_CLOSE_GROUP CALL FUNCTION 'BDC_CLOSE_GROUP' EXCEPTIONS not_open = 1 queue_error = 2.
CURRENCY_CHECK_FOR_PROCESS CALL FUNCTION 'CURRENCY_CHECK_FOR_PROCESS' EXPORTING process = 'SAPMFBZG' IMPORTING all_bukrs = xalw_bukrs TABLES t_bukrs = alw_bukrs EXCEPTIONS process_not_maintained = 1 OTHERS = 2.
CURRENCY_GET_SUBSEQUENT CALL FUNCTION 'CURRENCY_GET_SUBSEQUENT' EXPORTING currency = iwaers process = 'SAPMFBZG' date = idate bukrs = ibukrs IMPORTING currency_new = iwaers.
CONVERT_FOREIGN_TO_FOREIGN_CUR CALL FUNCTION 'CONVERT_FOREIGN_TO_FOREIGN_CUR' EXPORTING * CLIENT = SY-MANDT date = idate * TYPE_OF_RATE = 'M' from_amount = camnt from_currency = iwaers to_currency = ewaers local_currency = ihwaer conversion_mode = 'X' IMPORTING to_amount = camnt.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.