RJBRFODERI1 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 RJBRFODERI1 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.
Title: Derivation of FO from Transaction Data: Callbacks
INCLUDE RJBIFODERI.
No SAP DATABASE tables are accessed within this REPORT code!
RM_DERI01_TAB_NAMES_GET CALL FUNCTION 'RM_DERI01_TAB_NAMES_GET' EXPORTING i_env = i_env IMPORTING e_tabnm_type = tabnm_type e_tabnm_char = tabnm_char e_id_type = id_type EXCEPTIONS type_not_found = 1 OTHERS = 2.
RM_DERI01_TAB_NAMES_GET CALL FUNCTION 'RM_DERI01_TAB_NAMES_GET' EXPORTING i_env = i_env IMPORTING e_tabnm_type = tabname * E_TABNM_CHAR = e_id_type = id_type e_ccobl_type = ccobl_type EXCEPTIONS type_not_found = 1 OTHERS = 2.
RM_TABLE_INFO_GET CALL FUNCTION 'RM_TABLE_INFO_GET' EXPORTING i_tabname = tabname * I_FIELDNAME = * I_LANGU = * I_READ_TEXTS = IMPORTING * E_TABHEADER = * E_TABFIELD_W = e_tabfields_t = t_fields EXCEPTIONS not_found = 1 ddic_error = 2 OTHERS = 3.
RM_DERI_CHAR_GET CALL FUNCTION 'RM_DERI_CHAR_GET' EXPORTING i_env = i_env i_all_names_t = i_tab_all_names IMPORTING e_names_char_t = t_names_char EXCEPTIONS OTHERS = 1.
RM_DERI01_TAB_NAMES_GET CALL FUNCTION 'RM_DERI01_TAB_NAMES_GET' EXPORTING i_env = i_env IMPORTING * E_TABNM_TYPE = * E_TABNM_CHAR = * E_ID_TYPE = e_ccobl_type = ccobl_type EXCEPTIONS type_not_found = 1 OTHERS = 2.
RM_DERI_CHAR_GET CALL FUNCTION 'RM_DERI_CHAR_GET' EXPORTING i_env = i_env i_all_names_t = i_tab_all_names IMPORTING e_names_char_t = t_names_char EXCEPTIONS OTHERS = 1.
RM_DERI01_CUST_EXIT_CALL CALL FUNCTION 'RM_DERI01_CUST_EXIT_CALL' EXPORTING i_deritype = w_rmdr_env-deritype i_rmda = w_rmdr_env-rmda i_step_id = i_id i_date = i_date i_master = i_item_1 i_rm_char = i_item_2 i_fob = w_fob i_temp = w_temp IMPORTING e_rm_char = e_item_2 e_fob = w_fob e_temp = w_temp e_exit_is_active = e_step_is_active e_failed = failed EXCEPTIONS derivation_failed = 1 OTHERS = 2.
RM_DERI_VALUE_TEXT_GET CALL FUNCTION 'RM_DERI_VALUE_TEXT_GET' EXPORTING i_strat = con_strat_typ i_env = i_env i_name = i_name i_value = i_value IMPORTING e_text = e_text EXCEPTIONS OTHERS = 1.
RM_DERI_RULE_CHECK * CALL FUNCTION 'RM_DERI_RULE_CHECK' * EXPORTING * i_env = i_env * i_sources_t = i_tab_sources * i_targets_t = i_tab_targets * EXCEPTIONS * rule_definition_reject = 1 * OTHERS = 2.
RM_DERI_STEP_CHECK CALL FUNCTION 'RM_DERI_STEP_CHECK' EXPORTING i_env = i_env i_step = x_step EXCEPTIONS step_definition_reject = 1 OTHERS = 2.
RM_DERI_ENTRY_CHECK CALL FUNCTION 'RM_DERI_ENTRY_CHECK' EXPORTING i_env = i_env i_values_t = i_tab_values EXCEPTIONS entry_reject = 1 OTHERS = 2.
RM_DERI01_CUST_EXIT_INFO CALL FUNCTION 'RM_DERI01_CUST_EXIT_INFO' EXPORTING i_deritype = w_rmdr_env-deritype i_step = i_step IMPORTING e_user_exit_info = e_user_exit_info EXCEPTIONS internal_error = 1 OTHERS = 2.
AFODR_STRATEGY_CAPTION_GET_01 CALL FUNCTION 'AFODR_STRATEGY_CAPTION_GET_01' EXPORTING i_deritype = w_rmdr_env-deritype IMPORTING e_text = x_text.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.