ED_MONASN_SELECTION_DATA 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 ED_MONASN_SELECTION_DATA 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!
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING * TEXT_QUESTION = L_F_TEXT_QUESTION diagnose_object = 'JIT_IDOC_SELECT' text_question = text-008 display_cancel_button = ' ' IMPORTING answer = g_f_answer TABLES parameter = spar_lt EXCEPTIONS text_not_found = 0 OTHERS = 0.
EDM01_SELECT_EDID4 CALL FUNCTION 'EDM01_SELECT_EDID4' TABLES it_edidc = g_t_edidc_i ot_edid4 = g_t_edid4 EXCEPTIONS nodata = 4 progerror = 2 OTHERS = 3.
EDM01_SELECT_EDIDS CALL FUNCTION 'EDM01_SELECT_EDIDS' TABLES it_edidc = g_t_edidc_i ot_edids = g_t_all_idoc_status EXCEPTIONS nodata = 4 progerror = 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.