RJBRSTDS 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 RJBRSTDS into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
JBAS - Save Dataset
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: P_AKTDAT = Selection Date
Selection Text: P_AUSW = Evaluation Type (Loans)
Selection Text: P_KSART = Rate Type (Futures)
Selection Text: P_PHID = Portfolio Hierarchy
Selection Text: P_PHKN = Portfolio Hierarchy Node
Selection Text: P_SICHT = View
Selection Text: P_SVTEXT = Short Name
Title: Save Dataset (Freeze)
Text Symbol: 001 = Transaction Data Selection
Text Symbol: ERL = Errors when Saving a Dataset
INCLUDE RJBRPH01.
INCLUDE RJBRPH02.
No SAP DATABASE tables are accessed within this REPORT code!
ISB_RM_PH_FOR_EVAL_GET * CALL FUNCTION 'ISB_RM_PH_FOR_EVAL_GET' * EXPORTING * P_PHID = P_PHID * P_SICHT = P_SICHT * IMPORTING * NO_BP = NO_BP_FLAG " keine BPs enthalten * TABLES * IT_JBRPHBAUM_RED = IT_PHBAUM * IT_HTEXT_TAB_RED = IT_H_TEXT * E_JBRBP = IT_BP * E_JBRZUORDN = IT_ZUORDN * CHANGING * P_PKNOTEN = P_PHKN * EXCEPTIONS * ABNORMAL_PGM_EXEC = 1 * NO_TREE_FOR_PKNOTEN = 2 * NO_HIERARCHY_FOUND = 3 * NO_DATA = 4 * OTHERS = 5.
EH_INIT_ERROR_ITAB CALL FUNCTION 'EH_INIT_ERROR_ITAB' EXCEPTIONS OTHERS = 1.
RM_INITIALIZE_BUFFER CALL FUNCTION 'RM_INITIALIZE_BUFFER' EXPORTING aktdatum = p_aktdat " Marktdaten für Futures ! EXCEPTIONS default_yieldcurve_missing = 1 OTHERS = 2.
RM_SE_DATA_SELECT_FOR_ISBRM * CALL FUNCTION 'RM_SE_DATA_SELECT_FOR_ISBRM' * EXPORTING * DATE = P_AKTDAT * IMPORTING * GESCHAEFTE = IT_SFGDT * TABLES * DEF_BASISPORTF = IT_BP * EXCEPTIONS * OTHERS = 1.
RM_SE_PRE_SELECTION CALL FUNCTION 'RM_SE_PRE_SELECTION' EXPORTING * RMBID = phid = p_phid sichtid = p_sicht date = p_aktdat * XREP = * XDET = * XFIK = TABLES * I_REPC_SELTAB = * I_BSTD = * I_SIMLF = e_baum = it_phbaum e_baumtxt = it_phtext e_zuordn = it_phzuordn e_fob = it_sel_fobjects CHANGING pknoten = p_phkn EXCEPTIONS no_bpids = 1 OTHERS = 2.
RM_PREPARE_HIST_STATE_OF_DATA CALL FUNCTION 'RM_PREPARE_HIST_STATE_OF_DATA' EXPORTING sichtid = p_sicht phid = p_phid pknoten = p_phkn date = p_aktdat save_text = p_svtext IMPORTING hist_state_id = hist_state_id error_itab = error_itab TABLES it_phbaum = it_phbaum it_phtext = it_phtext it_phzuordn = it_phzuordn EXCEPTIONS input_data_error = 1 nob_error = 2 locking_error = 3 db_insert_error = 4 OTHERS = 5.
EH_APPEND_TO_ERROR_ITAB CALL FUNCTION 'EH_APPEND_TO_ERROR_ITAB' EXPORTING loc_error_tab = error_itab s_prot = ' ' s_err_tab = 'X' EXCEPTIONS OTHERS = 1.
EH_SHOW_ERROR_ITAB_NEW CALL FUNCTION 'EH_SHOW_ERROR_ITAB_NEW' EXPORTING titlebar = text-erl * HEADING = i_auswtyp = '2' "VaR EXCEPTIONS OTHERS = 1.
ISB_RM_DATA_HS_FREEZE * CALL FUNCTION 'ISB_RM_DATA_HS_FREEZE' * EXPORTING * IS_JBRHSSPAR = IS_HSSPAR * SFGDT = IT_SFGDT * SAVE_DATUM = P_AKTDAT * IMPORTING * ID_STAND = SAVE_ID * TABLES * IT_JBRBP = IT_BP * IT_JBRPHBAUM = IT_PHBAUM * IT_HTEXT_TAB = IT_H_TEXT * IT_ZUORDN = IT_ZUORDN * EXCEPTIONS * OTHERS = 1.
RM_SELECT_HIST_STATE_OF_DATA CALL FUNCTION 'RM_SELECT_HIST_STATE_OF_DATA' EXPORTING spara = is_hsspari s_kursart = p_ksart TABLES i_fob = it_sel_fobjects e_bapierr = error_itab EXCEPTIONS db_save_error = 1 OTHERS = 2.
EH_APPEND_TO_ERROR_ITAB CALL FUNCTION 'EH_APPEND_TO_ERROR_ITAB' EXPORTING loc_error_tab = error_itab s_prot = ' ' s_err_tab = 'X' EXCEPTIONS OTHERS = 1.
EH_SHOW_ERROR_ITAB_NEW CALL FUNCTION 'EH_SHOW_ERROR_ITAB_NEW' EXPORTING titlebar = text-erl * HEADING = i_auswtyp = '2' "VaR EXCEPTIONS OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.