RFTAXIMP is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This program is used for importing tax codes and tax percentage rates...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter RFTAXIMP 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: ALAND = Country
Selection Text: TRKORR = Transport number
Title: Import Tax Codes After Transport
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
IMPORT_TAX_PERCENTAGES CALL FUNCTION 'IMPORT_TAX_PERCENTAGES' EXPORTING TRKORR = TRKORR ALAND = ALAND.
DYNP_VALUES_READ CALL FUNCTION 'DYNP_VALUES_READ' EXPORTING DYNAME = PROG DYNUMB = '1000' TRANSLATE_TO_UPPER = 'X' TABLES DYNPFIELDS = DYNPFIELDS EXCEPTIONS OTHERS = 1.
F4IF_INT_TABLE_VALUE_REQUEST CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST' EXPORTING RETFIELD = 'TRKORR' DYNPPROG = PROG DYNPNR = DYNNR DYNPROFIELD = 'TRKORR' VALUE_ORG = 'S' TABLES VALUE_TAB = VALUE_TAB EXCEPTIONS PARAMETER_ERROR = 1 NO_VALUES_FOUND = 2 OTHERS = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.