SAPMF70D is a standard Module pool for a dialog screen ABAP Program 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 SAPMF70D into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
TB04 - Delete forex hedge
TB03 - Display forex hedge
TB02 - Change forex hedge
TB14 - Reverse object hedge
TB01 - Create forex hedge
TB13 - Display object hedge
TB12 - Change object hedge
TB11 - Create Object Hedge
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: Forex Hedges: Initial Processing Screen
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
TB_COVR_MAIN * CALL FUNCTION 'TB_COVR_MAIN' * EXPORTING * MODUS = 'CREA' * TCODE = SY-TCODE.
TB_COVR_MAIN * CALL FUNCTION 'TB_COVR_MAIN' * EXPORTING * MODUS = 'CHNG' * TCODE = SY-TCODE.
TB_COVR_MAIN * CALL FUNCTION 'TB_COVR_MAIN' * EXPORTING * MODUS = 'DISP' * TCODE = SY-TCODE.
TB_COVR_MAIN * CALL FUNCTION 'TB_COVR_MAIN' * EXPORTING * MODUS = 'RSET' * TCODE = SY-TCODE.
TB_COVR_MAIN CALL FUNCTION 'TB_COVR_MAIN' EXPORTING modus = 'CREA' tcode = sy-tcode.
TB_COVR_MAIN CALL FUNCTION 'TB_COVR_MAIN' EXPORTING modus = 'CHNG' tcode = sy-tcode.
TB_COVR_MAIN CALL FUNCTION 'TB_COVR_MAIN' EXPORTING modus = 'DISP' tcode = sy-tcode.
TB_COVR_MAIN CALL FUNCTION 'TB_COVR_MAIN' EXPORTING modus = 'RSET' tcode = sy-tcode.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.