RFVDCNCLFD_0A 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 RFVDCNCLFD_0A 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!
BAL_LOG_CREATE CALL FUNCTION 'BAL_LOG_CREATE' EXPORTING i_s_log = g_log IMPORTING e_log_handle = g_loghandle EXCEPTIONS log_header_inconsistent = 1 OTHERS = 2.
BAL_LOG_MSG_ADD CALL FUNCTION 'BAL_LOG_MSG_ADD' EXPORTING i_log_handle = g_loghandle i_s_msg = l_msg IMPORTING e_s_msg_handle = l_wrk_msg_handle EXCEPTIONS log_not_found = 1 msg_inconsistent = 2 OTHERS = 3.
BAL_DSP_LOG_DISPLAY CALL FUNCTION 'BAL_DSP_LOG_DISPLAY' EXPORTING i_s_display_profile = u_s_display_profile i_t_log_handle = l_loghandle EXCEPTIONS OTHERS = 1.
FVD_BO_OL_GET_ERROR_LIST_NEWER CALL FUNCTION 'FVD_BO_OL_GET_ERROR_LIST_NEWER' EXPORTING i_loghandle = g_loghandle i_langu = sy-langu IMPORTING e_tab_msg = c_tab_msg EXCEPTIONS log_not_found = 1 OTHERS = 2.
BAL_LOG_MSG_DELETE_ALL CALL FUNCTION 'BAL_LOG_MSG_DELETE_ALL' EXPORTING i_log_handle = g_loghandle EXCEPTIONS log_not_found = 1 OTHERS = 2.
BAL_LOG_MSG_ADD CALL FUNCTION 'BAL_LOG_MSG_ADD' EXPORTING i_log_handle = g_loghandle i_s_msg = l_s_msg EXCEPTIONS log_not_found = 1 msg_inconsistent = 2 log_is_full = 3 OTHERS = 4.
BAL_DSP_PROFILE_SINGLE_LOG_GET CALL FUNCTION 'BAL_DSP_PROFILE_SINGLE_LOG_GET' IMPORTING e_s_display_profile = l_s_display_profile.
BAL_LOG_HDR_CHANGE CALL FUNCTION 'BAL_LOG_HDR_CHANGE' EXPORTING i_log_handle = g_loghandle i_s_log = g_log EXCEPTIONS log_not_found = 1 log_header_inconsistent = 2 OTHERS = 3.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_buffer_active = space i_callback_program = l_repid i_callback_top_of_page = l_top_of_print i_callback_html_top_of_page = l_html_top_of_page is_layout = l_is_layout it_fieldcat = l_it_fieldcat it_excluding = l_it_excluding it_special_groups = l_it_special_groups it_sort = l_it_sort i_default = 'X' i_save = 'A' is_variant = l_is_variant it_events = l_it_event it_event_exit = l_it_event_exit is_print = l_is_print it_filter = si_it_filter TABLES t_outtab = l_tab_bal_msg 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.