RM07MFOI 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 RM07MFOI 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: Include RM07MFOI
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
IS_OIA01_SINGLE_READ CALL FUNCTION 'IS_OIA01_SINGLE_READ' EXPORTING I_EXGNUM = oiaqb_tab-oiexgnum * I_BYPASSING_BUFFER = ' ' * I_REFRESH_BUFFER = IMPORTING E_OIA01 = xoia01 EXCEPTIONS RECORD_NOT_FOUND = 1 OTHERS = 2 .
IS_OIAQA_SINGLE_READ CALL FUNCTION 'IS_OIAQA_SINGLE_READ' EXPORTING I_PREQNO = oiaqb_tab-clrno * I_BYPASSING_BUFFER = ' ' * I_REFRESH_BUFFER = IMPORTING E_OIAQA = xoiaqa EXCEPTIONS RECORD_NOT_FOUND = 1 OTHERS = 2 .
DATE_GET_WEEK CALL FUNCTION 'DATE_GET_WEEK' "SOEK006154 BL EXPORTING "SOEK006154 BL DATE = P_MKPF-BUDAT "SOEK006154 BL IMPORTING "SOEK006154 BL WEEK = P_OIAQB_KEY-SPWOC "SOEK006154 BL EXCEPTIONS "SOEK006154 BL DATE_INVALID = 1 "SOEK006154 BL OTHERS = 2. "SOEK006154 BL
FI_PERIOD_DETERMINE CALL FUNCTION 'FI_PERIOD_DETERMINE' "SOEK006154 BL EXPORTING "SOEK006154 BL I_BUDAT = P_MKPF-BUDAT "SOEK006154 BL I_BUKRS = P_MSEG-BUKRS "SOEK006154 BL I_PERIV = T001-PERIV "SOEK006154 BL * I_GJAHR = 0000 "SOEK006154 BL * I_MONAT = 00 "SOEK006154 BL * X_XMO16 = ' ' "SOEK006154 BL IMPORTING "SOEK006154 BL E_GJAHR = GJAHR "SOEK006154 BL E_MONAT = MONAT "SOEK006154 BL * E_POPER = "SOEK006154 BL EXCEPTIONS "SOEK006154 BL FISCAL_YEAR = 1 "SOEK006154 BL PERIOD = 2 "SOEK006154 BL PERIOD_VERSION = 3 "SOEK006154 BL POSTING_PERIOD = 4 "SOEK006154 BL SPECIAL_PERIOD = 5 "SOEK006154 BL VERSION = 6 "SOEK006154 BL POSTING_DATE = 7 "SOEK006154 BL OTHERS = 8. "SOEK006154 BL
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.