MF02KFASHI01 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 MF02KFASHI01 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!
WRF_PSCD_CHECK_CHAIN_TYPE * CALL FUNCTION 'WRF_PSCD_CHECK_CHAIN_TYPE' * EXPORTING * lfa1 = lfa1 * EXCEPTIONS * chain_type_not_applicable = 1 * mat_stag_time_not_applicable = 2 * OTHERS = 3.
WRF_PSCD_CHECK_CHAIN_TYPE CALL FUNCTION 'WRF_PSCD_CHECK_CHAIN_TYPE' EXPORTING lifnr = lfa1-lifnr werks = lfa1-werks transport_chain = lfa1-transport_chain staging_time = lfa1-staging_time EXCEPTIONS chain_type_not_applicable = 1 mat_stag_time_not_applicable = 2 OTHERS = 3.
WRF_PSCD_CHECK_CHAIN_TYPE CALL FUNCTION 'WRF_PSCD_CHECK_CHAIN_TYPE' EXPORTING LIFNR = lfm1-lifnr * WERKS = TRANSPORT_CHAIN = lfm1-transport_chain STAGING_TIME = lfm1-staging_time EXCEPTIONS CHAIN_TYPE_NOT_APPLICABLE = 1 MAT_STAG_TIME_NOT_APPLICABLE = 2 OTHERS = 3.
WRF_PSCD_CHECK_CHAIN_TYPE CALL FUNCTION 'WRF_PSCD_CHECK_CHAIN_TYPE' EXPORTING LIFNR = lfm2-lifnr * WERKS = TRANSPORT_CHAIN = lfm2-transport_chain STAGING_TIME = lfm2-staging_time EXCEPTIONS CHAIN_TYPE_NOT_APPLICABLE = 1 MAT_STAG_TIME_NOT_APPLICABLE = 2 OTHERS = 3 .
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.