MV13AFMD 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 MV13AFMD 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_NEXT_PERIOD_AGREEMENT CALL FUNCTION 'MM_NEXT_PERIOD_AGREEMENT' EXPORTING AGREEMENT_DATBI = L_DATBI_OLD_KONA CALENDAR_ID = P_KAL_ID IMPORTING NEXT_AGREEMENT_DATBI = E_DATBI EXCEPTIONS CALENDAR_BUFFER_NOT_LOADABLE = 1 CALENDAR_ID_MISSING = 2 NO_PERIOD = 3 DATE_INVALID = 4 FACTORY_CALENDAR_NOT_FOUND = 5 OTHERS = 6.
MM_NEXT_PERIOD_CONDITION CALL FUNCTION 'MM_NEXT_PERIOD_CONDITION' EXPORTING CONDITION_DATAB = KONA-DATAB CONDITION_DATBI = KONA-DATBI CALENDAR_ID = KONA-IDENT1 TABLES CONDITION_PERIODS = BONUSPERIO EXCEPTIONS CALENDAR_BUFFER_NOT_LOADABLE = 01 CALENDAR_ID_MISSING = 02 DATAB_GREATER_DATBI = 03 NO_PERIODS = 04 DATE_INVALID = 05 FACTORY_CALENDAR_NOT_FOUND = 06 MISSING_LAST_PERIOD = 07.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.