MKAUFI01_READ_ORDER 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 MKAUFI01_READ_ORDER 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!
KAUF_ORDER_READ CALL FUNCTION 'KAUF_ORDER_READ' EXPORTING I_ACTVT = MKAUF_MODUS I_AUFNR = COAS-AUFNR I_AUTYP_ERL = AUTYP_ERL I_COAS = *COAS I_AFKO = AFKO I_AFPO = AFPO IMPORTING E_AFKO = AFKO E_AFPO = AFPO E_COAS = COAS E_KAUF = KAUF EXCEPTIONS ORDER_TYPE_NOT_VALID = 1 ORDER_NOT_FOUND = 2.
K_ORDER_EDIT CALL FUNCTION 'K_ORDER_EDIT' EXPORTING I_AUFNR = COAS-AUFNR.
K_ORDER_DISPLAY CALL FUNCTION 'K_ORDER_DISPLAY' EXPORTING I_AUFNR = COAS-AUFNR.
K_KOKRS_SET CALL FUNCTION 'K_KOKRS_SET' EXPORTING I_KOKRS = COAS-KOKRS POPUP = '0'.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.