RM06ENBE is a standard Executable ABAP Report 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 RM06ENBE into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
ME2A - Monitor Confirmations
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.
Selection Text: S_BEDAT = Document Date
Selection Text: S_BSART = Document Type
Selection Text: S_EBTYP = Confirmation category
Selection Text: S_EINDT = Delivery Date
Selection Text: S_EKGRP = Purchasing Group
Selection Text: S_LIFNR = Vendor
Title: Monitor Vendor Confirmations
Text Symbol: 001 = Plant
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
MM_ADDRESS_GET CALL FUNCTION 'MM_ADDRESS_GET' EXPORTING i_ekko = ekko IMPORTING e_name1 = gt_outtab-ekko_name1 EXCEPTIONS OTHERS = 1.
VBEP_EDATU_AUSGEBEN CALL FUNCTION 'VBEP_EDATU_AUSGEBEN' "Datumsformat anpassen EXPORTING int_edatu = ett-eindt int_periode = ett-lpein IMPORTING ext_edatu = datum ext_periode = periode.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING * i_interface_check = ' ' * i_bypassing_buffer = ' ' i_buffer_active = ' ' i_callback_program = g_callback_program i_callback_pf_status_set = 'SET_PF_STATUS' i_callback_user_command = 'USER_COMMAND' * i_callback_top_of_page = ' ' * i_callback_html_top_of_page = ' ' * i_callback_html_end_of_list = ' ' i_structure_name = 'MERE_OUTTAB_ME2A' i_background_id = 'ALV_BACKGROUND' * i_grid_title = * i_grid_settings = * is_layout = * it_fieldcat = * it_excluding = * it_special_groups = * it_sort = * it_filter = * is_sel_hide = * i_default = 'X' i_save = 'A' * is_variant = * it_events = * it_event_exit = * is_print = * is_reprep_id = * i_screen_start_column = 0 * i_screen_start_line = 0 * i_screen_end_column = 0 * i_screen_end_line = 0 * i_html_height_top = 0 * i_html_height_end = 0 * it_alv_graphics = * it_hyperlink = * it_add_fieldcat = * it_except_qinfo = * ir_salv_fullscreen_adapter = IMPORTING e_exit_caused_by_caller = g_exit_caused_by_caller es_exit_caused_by_user = gs_exit_caused_by_user TABLES t_outtab = gt_outtab EXCEPTIONS program_error = 1 OTHERS = 2.
ME_DISPLAY_PURCHASE_DOCUMENT CALL FUNCTION 'ME_DISPLAY_PURCHASE_DOCUMENT' EXPORTING i_ebeln = l_outtab-ekko_ebeln i_ebelp = l_outtab-ekpo_ebelp i_enjoy = 'X' EXCEPTIONS not_found = 1 no_authority = 2 invalid_call = 3 preview_not_possible = 4 OTHERS = 5.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.