ED_MONASN_USER_COM 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_USER_COM 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!
FP_JOB_OPEN CALL FUNCTION 'FP_JOB_OPEN' CHANGING ie_outputparams = ls_fp_outputparams EXCEPTIONS cancel = 1 usage_error = 2 system_error = 3 internal_error = 4 OTHERS = 5.
FP_FUNCTION_MODULE_NAME CALL FUNCTION 'FP_FUNCTION_MODULE_NAME' EXPORTING i_name = 'EDMASN_PDF_FORM' IMPORTING e_funcname = lv_fm_name.
FP_JOB_CLOSE CALL FUNCTION 'FP_JOB_CLOSE' * IMPORTING * E_RESULT = EXCEPTIONS usage_error = 1 system_error = 2 internal_error = 3 OTHERS = 4 .
EDM01_DISPLAY_IDOC_TEXT CALL FUNCTION 'EDM01_DISPLAY_IDOC_TEXT' EXPORTING i_idocnum = g_t_header-docnum i_mestype = 'DESADV' EXCEPTIONS docnumerr = 1 mestyperr = 2 OTHERS = 3.
AUTHORITY_CHECK_TCODE CALL FUNCTION 'AUTHORITY_CHECK_TCODE' EXPORTING tcode = 'VL33N' EXCEPTIONS ok = 0 not_ok = 2 OTHERS = 3.
EDMASN01_SELECT_BSTYP CALL FUNCTION 'EDMASN01_SELECT_BSTYP' EXPORTING iv_ebeln = l_f_help_bstnr IMPORTING ev_bstyp = l_f_bstyp EXCEPTIONS nodata = 1 progerror = 2 OTHERS = 3.
AUTHORITY_CHECK_TCODE CALL FUNCTION 'AUTHORITY_CHECK_TCODE' EXPORTING tcode = 'ME33' EXCEPTIONS ok = 0 not_ok = 2 OTHERS = 3.
AUTHORITY_CHECK_TCODE CALL FUNCTION 'AUTHORITY_CHECK_TCODE' EXPORTING tcode = 'ME23' EXCEPTIONS ok = 0 not_ok = 2 OTHERS = 3.
EDM01_GET_STATUS_HISTORY CALL FUNCTION 'EDM01_GET_STATUS_HISTORY' EXPORTING iv_docnum = g_t_header-docnum TABLES ot_statushist = g_t_statushist EXCEPTIONS nodata = 0 progerror = 2 OTHERS = 3.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING ** i_structure_name = 'STATUSHIST' * I_BACKGROUND_ID = ' ' i_grid_title = text-028 * I_GRID_SETTINGS = * IS_LAYOUT = it_fieldcat = g_t_fieldcat_s[] it_excluding = g_t_extab[] * IT_SPECIAL_GROUPS = * IT_SORT = * IT_FILTER = * IS_SEL_HIDE = * I_DEFAULT = 'X' * I_SAVE = ' ' * IS_VARIANT = * IT_EVENTS = * IT_EVENT_EXIT = * IS_PRINT = * IS_REPREP_ID = i_screen_start_column = 10 i_screen_start_line = 5 i_screen_end_column = 140 i_screen_end_line = 20 TABLES t_outtab = g_t_statushist EXCEPTIONS program_error = 1 OTHERS = 2 .
EDM01_DELETE_IDOC CALL FUNCTION 'EDM01_DELETE_IDOC' EXPORTING docnum_iv = g_t_bdidocstat-docnum TABLES ct_bdidocstat = lt_bdidocstat EXCEPTIONS not_possible = 1 OTHERS = 2.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_structure_name = 'LEGENDE' * I_BACKGROUND_ID = ' ' i_grid_title = text-029 * I_GRID_SETTINGS = * IS_LAYOUT = it_fieldcat = g_t_fieldcat_l[] it_excluding = g_t_extab[] * IT_SPECIAL_GROUPS = * IT_SORT = * IT_FILTER = * IS_SEL_HIDE = * I_DEFAULT = 'X' * I_SAVE = ' ' * IS_VARIANT = * IT_EVENTS = * IT_EVENT_EXIT = * IS_PRINT = * IS_REPREP_ID = i_screen_start_column = 10 i_screen_start_line = 5 i_screen_end_column = 90 i_screen_end_line = 20 TABLES t_outtab = g_t_legende EXCEPTIONS program_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.