MCNW1FAZ_FC_SAVE 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 MCNW1FAZ_FC_SAVE 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!
CO_RU_CONFIRMATION_CHECK CALL FUNCTION 'CO_RU_CONFIRMATION_CHECK' EXPORTING AFRUD_IN = AFRUD AKTYP_IN = 'H' CAUFVD_IN = CAUFVD NO_DIALOG_FLAG = YX IMPORTING AFRUD_EXP = AFRUD TABLES NAMTAB = FNAMTAB EXCEPTIONS CONF_DATA_FALSE = 1 CONF_DATE_IN_FUTURE = 2 CONVERSION_ERROR = 3 INTERRUPT_BY_USER = 4 ORDER_ALREADY_LOCKED = 5 TABLE_ENTRY_NOT_FOUND = 6 WORK_CENTER_NOT_FOUND = 7 OTHERS = 8.
CO_RU_CONFIRMATION_ADD CALL FUNCTION 'CO_RU_CONFIRMATION_ADD' EXPORTING AFRUD_IN = AFRUD AFVGD_IN = AFVGD AKTYP_IN = 'H' AKTYP_PIC_IN = 'H' CAUFVD_IN = CAUFVD NO_DIALOG_FLAG = YX IMPORTING CAUFVD_OUT = CAUFVD TABLES AFRUD_TAB = AFRUDTAB EXCEPTIONS CONVERSION_ERROR = 1 ORDER_DATA_NOT_FOUND = 2 STAND_CONF_NOT_POSSIBLE = 3 DIALOG_NECESSARY = 4 WRONG_SEQUENCE = 5 OTHERS = 6.
CO_RU_CONFIRMATION_POST CALL FUNCTION 'CO_RU_CONFIRMATION_POST' EXPORTING TRANS_TYP = 'H' EXCEPTIONS POSTING_ERROR = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.