RM06ELLBN 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 RM06ELLBN into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
ME2ON - Subcontracting Cockpit
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: P_BATGRP = Group by Batches
Selection Text: P_NUROFF = Only SC Stocks with Shortage
Selection Text: P_SCREQ = With Reqts from SC Requisns
Selection Text: P_TPSCP = With Ext. Receipts from POs
Selection Text: P_TPSCR = W. Ext. Receipts from Requisns
Selection Text: SO_BAUGR = Assembly
Selection Text: SO_BDTER = Requirement Date
Selection Text: SO_LIFNR = Vendor
Selection Text: SO_MATNR = Components Provided
Selection Text: SO_WERKS = Plant
Title: Subcontracting Cockpit
Text Symbol: 001 = Subcontracting Cockpit
Text Symbol: 002 = Selection Criteria
Text Symbol: 003 = List Output
INCLUDE SELOPT_CNT_CALL. "#EC *
No SAP DATABASE tables are accessed within this REPORT code!
MMPUR_ME2ON_FACTORY CALL FUNCTION 'MMPUR_ME2ON_FACTORY' EXPORTING iv_guid = me->mv_guid IMPORTING eo_factory = me->mo_factory.
ME_REP_GET_TABLE_MANAGER CALL FUNCTION 'ME_REP_GET_TABLE_MANAGER' EXPORTING im_service = sy-repid IMPORTING ex_manager = me->mo_rep_factory.
ME_REP_START_VIA_TABLE_MANAGER CALL FUNCTION 'ME_REP_START_VIA_TABLE_MANAGER' EXPORTING im_table_manager = me->mo_rep_factory im_title = text-001 IMPORTING ex_exit = lv_exit.
BAL_LOG_CREATE CALL FUNCTION 'BAL_LOG_CREATE' EXPORTING i_s_log = ls_log IMPORTING e_log_handle = me->if_mmbal_logger~my_handle EXCEPTIONS log_header_inconsistent = 1 OTHERS = 2.
BAL_LOG_MSG_ADD CALL FUNCTION 'BAL_LOG_MSG_ADD' EXPORTING i_log_handle = me->if_mmbal_logger~my_handle i_s_msg = ls_msg EXCEPTIONS log_not_found = 0 msg_inconsistent = 0 log_is_full = 0 error_message = 0 OTHERS = 0.
BAL_LOG_EXC_ADD CALL FUNCTION 'BAL_LOG_EXC_ADD' EXPORTING i_log_handle = me->if_mmbal_logger~my_handle i_msgty = lv_msgty i_exception = io_cx EXCEPTIONS log_not_found = 0 msg_inconsistent = 0 log_is_full = 0 error_message = 0 OTHERS = 0.
BAL_GLB_SEARCH_MSG CALL FUNCTION 'BAL_GLB_SEARCH_MSG' EXPORTING i_t_log_handle = lt_ballogh IMPORTING e_t_msg_handle = lt_balmsgh EXCEPTIONS msg_not_found = 1 OTHERS = 2.
BAL_LOG_MSG_READ CALL FUNCTION 'BAL_LOG_MSG_READ' EXPORTING i_s_msg_handle =
IMPORTING e_s_msg = ls_balmsg EXCEPTIONS log_not_found = 0 msg_not_found = 0 OTHERS = 0.
BAL_DSP_PROFILE_POPUP_GET CALL FUNCTION 'BAL_DSP_PROFILE_POPUP_GET' IMPORTING e_s_display_profile = ls_profile.
BAL_GLB_SEARCH_MSG CALL FUNCTION 'BAL_GLB_SEARCH_MSG' EXPORTING i_t_log_handle = lt_ballogh IMPORTING e_t_msg_handle = lt_balmsgh EXCEPTIONS msg_not_found = 0 OTHERS = 0.
BAL_DSP_LOG_DISPLAY CALL FUNCTION 'BAL_DSP_LOG_DISPLAY' EXPORTING i_t_log_handle = lt_ballogh i_s_display_profile = ls_profile EXCEPTIONS OTHERS = 0.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.