MF08AI01 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 MF08AI01 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!
FI_FINCAL_MAIN_INIT CALL FUNCTION 'FI_FINCAL_MAIN_INIT' EXPORTING I_MODUS1 = RF08A-MODUS1 I_VEREH = RF08A-VEREH IMPORTING E_FACID = FACID E_HOCID = HOCID TABLES T_ATTRLIST = ATTDATES.
FI_FINCAL_MAIN_PROCESS CALL FUNCTION 'FI_FINCAL_MAIN_PROCESS' EXPORTING OK_CODE = OK_CODE * importing * return_code = TABLES ATTRLIST = ATTDATES SELLIST = SELDATES EXCEPTIONS NOT_INITIALIZED = 01.
CALENDAR_VISUAL_PRESENTATION CALL FUNCTION 'CALENDAR_VISUAL_PRESENTATION' EXPORTING HOLIDAY_CALENDAR = HOCID FACTORY_CALENDAR = FACID ACTUAL_DATE = DATE NUMBER_OF_MONTHS = DISPLAY DISPLAY_MODE = DISP_TYP WRITE_FUNCTION = 'FI_FINCAL_MAIN_WRITE' PROCESS_FUNCTION = 'FI_FINCAL_MAIN_PROCESS' SET_STATUS_FUNCTION = 'FI_FINCAL_MAIN_PFSTATUS' IMPORTING RETURN_CODE = RETURN_CODE TABLES ATTRLIST = ATTDATES EXCEPTIONS FACTORY_CALENDAR_NOT_FOUND = 01 HOLIDAY_CALENDAR_NOT_FOUND = 02 DATE_INVALID = 03 DATE_WRONG_FORMAT = 04 DISPLAY_MODE_INVALID = 05 FUNCTION_NOT_FOUND = 06 NUMBER_OF_MONTH_NOT_FOUND = 07.
POPUP_TO_CONFIRM_LOSS_OF_DATA CALL FUNCTION 'POPUP_TO_CONFIRM_LOSS_OF_DATA' EXPORTING TEXTLINE1 = TEXT-001 " TEXTLINE2 = ' ' TITEL = LM_ZEILE " START_COLUMN = 25 " START_ROW = 6 IMPORTING ANSWER = ANSWER.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.