RWRFREORGF02 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 RWRFREORGF02 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!
WRF_BUDG_TYPE_READ CALL FUNCTION 'WRF_BUDG_TYPE_READ' EXPORTING is_budg_type = ls_type_adm IMPORTING * ET_PROTOCOL = * ET_BUDGLEV = * ET_BUDGKS = et_budgty = pt_budg_type * ET_BUDGTY_TXT = EXCEPTIONS error = 1 error_message = 98 OTHERS = 99 .
WRF_BUDG_DAY_GET_PERIOD CALL FUNCTION 'WRF_BUDG_DAY_GET_PERIOD' EXPORTING i_date = pi_date I_OFFSET = pi_offset IMPORTING E_START_DATE = p_date_from E_END_DATE = p_date_to EXCEPTIONS ERROR = 1 NO_PERIOD_FOUND = 2 OTHERS = 3 .
WRF_POTB_GET_PERIOD * CALL FUNCTION 'WRF_POTB_GET_PERIOD' * EXPORTING * i_date_from = pi_date_from * i_date_to = pi_date_to * i_total_in_period = pi_total_in_period * IMPORTING * e_date_from = p_date_from * e_date_to = p_date_to * EXCEPTIONS * error = 1 * error_message = 98 * OTHERS = 99.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = text-013 text_question = l_string text_button_1 = text-011 text_button_2 = text-012 display_cancel_button = 'X' start_column = '25' start_row = '6' popup_type = 'ICON_MESSAGE_WARNING' IMPORTING answer = l_answer EXCEPTIONS text_not_found = 1 error_message = 98 OTHERS = 99.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = text-013 text_question = l_string text_button_1 = text-011 text_button_2 = text-012 display_cancel_button = 'X' start_column = '25' start_row = '6' popup_type = 'ICON_MESSAGE_WARNING' IMPORTING answer = l_answer EXCEPTIONS text_not_found = 1 error_message = 98 OTHERS = 99.
BAL_DB_SEARCH CALL FUNCTION 'BAL_DB_SEARCH' EXPORTING * I_CLIENT = SY-MANDT i_s_log_filter = ls_log_filter IMPORTING e_t_log_header = lt_log_header EXCEPTIONS log_not_found = 1 no_filter_criteria = 2 error_message = 98 OTHERS = 99 .
BAL_DB_LOAD CALL FUNCTION 'BAL_DB_LOAD' EXPORTING i_t_log_header = lt_log_header i_t_log_handle = pt_log_handles * I_T_LOGNUMBER = i_client = sy-mandt * I_DO_NOT_LOAD_MESSAGES = ' ' * I_EXCEPTION_IF_ALREADY_LOADED = * IMPORTING * e_t_log_handle = * E_T_MSG_HANDLE = EXCEPTIONS no_logs_specified = 1 log_not_found = 2 log_already_loaded = 3 error_message = 98 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.