RMDRD004F01 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 RMDRD004F01 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!
ENQUEUE_E_MDRD CALL FUNCTION 'ENQUEUE_E_MDRD' EXPORTING mode_mdrd = 'E' mandt = sy-mandt resdb =
-berid _wait = 'X' EXCEPTIONS foreign_lock = 1 system_failure = 2 OTHERS = 99.
ENQUEUE_E_MDRD_EXTWG CALL FUNCTION 'ENQUEUE_E_MDRD_EXTWG' EXPORTING mode_mdrd_extwg = 'E' mandt = sy-mandt resdb =
-berid _wait = 'X' EXCEPTIONS foreign_lock = 1 system_failure = 2 OTHERS = 99.
MDRD_PACKET_DELETE CALL FUNCTION 'MDRD_PACKET_DELETE' EXPORTING i_control_packet_delete = p_control_packet_delete i_header_packet_delete = l_header_packet_delete IMPORTING e_header_packet_delete = l_header_packet_delete CHANGING ch_t_drd_couples = l_t_drd_couples ch_t_minutes = l_t_minutes EXCEPTIONS no_drd_data = 1 OTHERS = 99.
MDRD_PACKET_DELETE CALL FUNCTION 'MDRD_PACKET_DELETE' STARTING NEW TASK l_task_number DESTINATION IN GROUP p_mdrdt_s_delete_scr_data-param_server_group PERFORMING end_of_task ON END OF TASK EXPORTING i_control_packet_delete = p_control_packet_delete i_header_packet_delete = l_header_packet_delete * IMPORTING * E_HEADER_PACKET_DELETE = L_HEADER_PACKET_DELETE CHANGING ch_t_drd_couples = l_t_drd_couples_packet ch_t_minutes = l_t_minutes EXCEPTIONS communication_failure = 1 system_failure = 2 resource_failure = 3 no_drd_data = 4 OTHERS = 99.
SPBT_INITIALIZE CALL FUNCTION 'SPBT_INITIALIZE' EXPORTING group_name = i_svrgrp IMPORTING free_pbt_wps = e_tasks EXCEPTIONS invalid_group_name = 1 internal_error = 2 pbt_env_already_initialized = 3 currently_no_resources_avail = 4 no_pbt_resources_found = 5 cant_init_different_pbt_groups = 6 error_message = 98 OTHERS = 99.
BAL_LOG_CREATE CALL FUNCTION 'BAL_LOG_CREATE' EXPORTING i_s_log = l_s_log IMPORTING e_log_handle = l_log_handle EXCEPTIONS log_header_inconsistent = 1 OTHERS = 99.
BAL_LOG_MSG_ADD CALL FUNCTION 'BAL_LOG_MSG_ADD' EXPORTING i_log_handle = l_log_handle i_s_msg = l_s_msg * IMPORTING * E_S_MSG_HANDLE = * E_MSG_WAS_LOGGED = * E_MSG_WAS_DISPLAYED = EXCEPTIONS log_not_found = 1 msg_inconsistent = 2 log_is_full = 3 OTHERS = 99.
BAL_DSP_PROFILE_SINGLE_LOG_GET CALL FUNCTION 'BAL_DSP_PROFILE_SINGLE_LOG_GET' IMPORTING e_s_display_profile = l_s_display_profile EXCEPTIONS OTHERS = 99.
BAL_DSP_LOG_DISPLAY CALL FUNCTION 'BAL_DSP_LOG_DISPLAY' EXPORTING i_s_display_profile = l_s_display_profile i_t_log_handle = l_t_log_handle * I_T_MSG_HANDLE = * I_S_LOG_FILTER = * I_S_MSG_FILTER = * I_T_LOG_CONTEXT_FILTER = * I_T_MSG_CONTEXT_FILTER = * I_AMODAL = ' ' * IMPORTING * E_S_EXIT_COMMAND = EXCEPTIONS profile_inconsistent = 1 internal_error = 2 no_data_available = 3 no_authority = 4 OTHERS = 99.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.