DBTIFFTR 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 DBTIFFTR 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: Form Routines - Treasury
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
STRING_CONCATENATE CALL FUNCTION 'STRING_CONCATENATE' EXPORTING string1 = fhapo-sbkklas string2 = fhapo-sbktyp IMPORTING string = trdat-sbewziti EXCEPTIONS too_small = 01.
TB_CURRENCY_AMOUNTS_CONVERT CALL FUNCTION 'TB_CURRENCY_AMOUNTS_CONVERT' EXPORTING i_company_code = fhapo-bukrs i_date = fhapo-dzterm i_foreign_amount = fhapo-bzbetr i_foreign_currency = fhapo-wzbetr i_local_amount = fhapo-bhwbetr i_local_currency = local_currency i_rate = fhapo-khwkurs i_sfix = fhapo-skhwfix i_flow_sign = fhapo-ssign IMPORTING e_local_amount = fhapo-bhwbetr e_rate = fhapo-khwkurs EXCEPTIONS OTHERS = 1.
TB_CURRENCY_AMOUNTS_CONVERT CALL FUNCTION 'TB_CURRENCY_AMOUNTS_CONVERT' EXPORTING i_date = fhapo-dzterm i_foreign_amount = fhapo-bzbetr i_foreign_currency = fhapo-wzbetr i_local_amount = fhapo-bhwbetr i_local_currency = local_currency i_rate = fhapo-khwkurs i_sfix = fhapo-skhwfix IMPORTING e_local_amount = fhapo-bhwbetr e_rate = fhapo-khwkurs EXCEPTIONS OTHERS = 1.
STRING_CONCATENATE CALL FUNCTION 'STRING_CONCATENATE' EXPORTING string1 = fhapo-sbkklas string2 = fhapo-sbktyp IMPORTING string = trdat-sbewziti EXCEPTIONS too_small = 01.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.