RM06DPMONITOR 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 RM06DPMONITOR into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
ME2DP - Down-Payment Monitoring for PO
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: SO_DPDAT = Down Payment Due Date
Selection Text: SO_DPTYP = Down Payment Categories
Selection Text: SO_BEDAT = D .
Selection Text: SO_BSART = D .
Selection Text: SO_EBELN = D .
Selection Text: SO_EKGRP = D .
Selection Text: SO_EKORG = D .
Selection Text: SO_LIFNR = D .
Title: Down-Payment Monitoring for PO
Text Symbol: 001 = PO Data
Text Symbol: 002 = Delimitation for Down Payment Request
INCLUDE SELOPT_CNT_CALL.
No SAP DATABASE tables are accessed within this REPORT code!
ME_REP_GET_TABLE_MANAGER CALL FUNCTION 'ME_REP_GET_TABLE_MANAGER' EXPORTING im_service = sy-repid IMPORTING ex_manager = me->my_rep_factory.
ME_REP_GET_TABLE_MANAGER CALL FUNCTION 'ME_REP_GET_TABLE_MANAGER' EXPORTING im_service = sy-repid im_force_tm = cl_mmpur_constants=>yes IMPORTING ex_manager = me->my_rep_factory.
ME_REP_COUNT_TABLE_LINES CALL FUNCTION 'ME_REP_COUNT_TABLE_LINES' EXPORTING im_mem_id = me->my_sel_data-mem_id->* im_not_found = cl_mmpur_constants=>no im_table_manager = me->my_rep_factory.
ME_REP_START_VIA_TABLE_MANAGER CALL FUNCTION 'ME_REP_START_VIA_TABLE_MANAGER' EXPORTING im_table_manager = me->my_rep_factory IMPORTING ex_exit = lv_exit. "1370637
ME_EKKO_SINGLE_READ CALL FUNCTION 'ME_EKKO_SINGLE_READ' EXPORTING pi_ebeln = me->my_ebeln IMPORTING po_ekko = me->my_header EXCEPTIONS no_records_found = 0 OTHERS = 0.
ME_EKPO_READ_WITH_EBELN CALL FUNCTION 'ME_EKPO_READ_WITH_EBELN' EXPORTING pi_ebeln = me->my_ebeln TABLES pto_ekpo = me->my_items EXCEPTIONS err_no_records_found = 1 OTHERS = 2.
ME_READ_HISTORY CALL FUNCTION 'ME_READ_HISTORY' EXPORTING ebeln = me->my_header-ebeln ebelp = ld_item->ebelp webre = ld_item->webre i_refresh_buffer = cl_mmpur_constants=>yes TABLES xekbe = ltd_ekbe->* xekbes = lt_ekbes.
CONVERT_TO_FOREIGN_CURRENCY CALL FUNCTION 'CONVERT_TO_FOREIGN_CURRENCY' EXPORTING date = lv_date foreign_currency = me->my_header-waers local_amount = iv_value local_currency = is_t001-waers rate = lv_rate IMPORTING foreign_amount = ev_value EXCEPTIONS OTHERS = 0.
WY_LFA1_SINGLE_READ CALL FUNCTION 'WY_LFA1_SINGLE_READ' EXPORTING pi_lifnr = ls_lfa1-lifnr IMPORTING po_lfa1 = ls_lfa1 EXCEPTIONS OTHERS = 1.
BAL_LOG_CREATE CALL FUNCTION 'BAL_LOG_CREATE' EXPORTING i_s_log = ls_log IMPORTING e_log_handle = protocol_handler EXCEPTIONS log_header_inconsistent = 1 OTHERS = 2.
BAL_LOG_MSG_ADD CALL FUNCTION 'BAL_LOG_MSG_ADD' "#EC * EXPORTING i_log_handle = protocol_handler i_s_msg = ls_msg EXCEPTIONS log_not_found = 1 msg_inconsistent = 2 log_is_full = 3 OTHERS = 4.
BAL_DSP_OUTPUT_INIT CALL FUNCTION 'BAL_DSP_OUTPUT_INIT'.
BAL_DSP_LOG_DISPLAY CALL FUNCTION 'BAL_DSP_LOG_DISPLAY' EXPORTING i_t_log_handle = lt_handles EXCEPTIONS profile_inconsistent = 0 internal_error = 0 no_data_available = 0 no_authority = 0 OTHERS = 0.
BAL_GLB_SEARCH_MSG CALL FUNCTION 'BAL_GLB_SEARCH_MSG' EXPORTING i_t_log_handle = lt_handles 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.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.