FOIAL001 is a standard ABAP INCLUDE available within your SAP system (depending on your version and release level). It is used for Automatic determination of the purchase assignment using table entries...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 FOIAL001 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!
MM_ENQUEUE_DOCUMENT CALL FUNCTION 'MM_ENQUEUE_DOCUMENT' EXPORTING I_EBELN = EKPO-EBELN I_BSTYP = EKPO-BSTYP.
OIA_EXG_ASSIGNMENT_QS_DETERM CALL FUNCTION 'OIA_EXG_ASSIGNMENT_QS_DETERM' EXPORTING I_OIA_PDQSD = OIA_PDQSD I_EKPO = EKPO I_ASQTY =
* I_OLD_MENGE = G_OLD_MENGE IMPORTING E_ASQTY = G_ASQTY E_MENGE = G_MENGE E_SEQENT = G_SEQENT TABLES I_XOIA06 = XOIA06 I_YOIA06 = YOIA06 EXCEPTIONS QS_NOT_EXIST = 1 GR_DATE_OUTSIDE_QS = 2 BASE_UOM_DELIVERY_NE_QS = 3 NO_QS_LINE_FOR_DELIVERY_DATE = 4 NO_ASSIGNABLE_QTY_IN_QS_LINE = 5 OTHERS = 6.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.