MOICFI0R 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 MOICFI0R 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!
V_KNA1_SINGLE_READ CALL FUNCTION 'V_KNA1_SINGLE_READ' EXPORTING PI_KUNNR = OICQOIL-CUSTOMER IMPORTING PE_KNA1 = kna1 EXCEPTIONS NO_RECORDS_FOUND = 1 OTHERS = 2.
WY_LFA1_SINGLE_READ CALL FUNCTION 'WY_LFA1_SINGLE_READ' EXPORTING PI_LIFNR = OICQOIL-VENDOR * PI_BYPASSING_BUFFER = * PI_REFRESH_BUFFER = IMPORTING PO_LFA1 = LFA1 EXCEPTIONS NO_RECORDS_FOUND = 1 OTHERS = 2.
MARA_SINGLE_READ CALL FUNCTION 'MARA_SINGLE_READ' EXPORTING MATNR = OICQOIL-MATERIAL IMPORTING WMARA = MARA EXCEPTIONS NOT_FOUND = 4.
NUMBER_CHECK CALL FUNCTION 'NUMBER_CHECK' EXPORTING NR_RANGE_NR = OICQCNTL-NUMKR_EXT NUMBER =
"SOEK001054 OBJECT = 'OIC_FORID' IMPORTING RETURNCODE = TMP_SUBRC EXCEPTIONS INTERVAL_NOT_FOUND = 1 NUMBER_RANGE_NOT_EXTERN = 2 OBJECT_NOT_FOUND = 3 OTHERS = 4.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.