RJBRSVA50 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 RJBRSVA50 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.
Selection Text: X_PHNAV = Display Portfolio Hierarchy
Selection Text: X_MERGE = Suppress Repeated Values
Selection Text: X_LEVEL = Detail Log
Selection Text: S_SIMR = Number of Simulation Run
Selection Text: S_SCEN = Scenarios
Selection Text: S_RPOS = Position Number
Selection Text: P_VARIA2 = Layout: Portfolio Hierarchy
Selection Text: P_VARIA1 = Layout: Single Records
Selection Text: P_VARI2 = Layout: Portfolio Hierarchy
Selection Text: P_VARI1 = Layout: Single Records
Selection Text: P_VALAR = D .
Selection Text: P_SICHT = View
Selection Text: P_SCEN = D .
Selection Text: P_PHKN = Portfolio Hierarchy Node
Selection Text: P_PHID = Portfolio Hierarchy
Selection Text: P_KEYFI1 = Key Figure
Selection Text: P_HORI = Horizon
Selection Text: P_EVAL = Evaluation Type
Selection Text: P_DATE = Evaluation Date
Selection Text: P_CURR = Display Currency
Title: Sensitivity Key Figures
Text Symbol: BU2 = Scenarios
Text Symbol: BU1 = Key Figs
Text Symbol: BL8 = Column Layout
Text Symbol: TB1 = Gen. Selections
Text Symbol: TB2 = Chars
Text Symbol: TB3 = Report Struct.
Text Symbol: TB4 = Control
Text Symbol: BL7 = Simulated Transactions
Text Symbol: BL6 = Portfolio Hierarchy
INCLUDE RJBISIM01.
INCLUDE CFAISVACOL.
INCLUDE CFAISVA50OUT.
No SAP DATABASE tables are accessed within this REPORT code!
RM_SSCR_PH_NODE_HELP call function 'RM_SSCR_PH_NODE_HELP' exporting * I_PROGNAME = SY-CPROG i_dynpro_number = '0301' i_fieldname_view = 'P_SICHT' i_fieldname_ph = 'P_PHID' i_fieldname_node = 'P_PHKN' importing e_node = p_phkn exceptions internal_error = 1 others = 2.
RM_SVA_SELECTIONS_CHECK call function 'RM_SVA_SELECTIONS_CHECK' exporting i_antype = con_antype_mmcb i_eval = p_eval i_rmda = '&RMD' i_curr = p_curr i_date = p_date i_hori = p_hori exceptions selection_error = 1 others = 2.
RM_SVA_SELECTIONS_CHECK call function 'RM_SVA_SELECTIONS_CHECK' exporting i_antype = con_antype_mmcb x_eval_other_screen = 'X' i_rmda = '&RMD' i_view = p_sicht i_phid = p_phid i_node = p_phkn x_curr_other_screen = 'X' x_date_other_screen = 'X' x_hori_other_screen = 'X' i_scen = p_scen i_keyfig1 = p_keyfi1 tables s_scen = s_scen exceptions selection_error = 1 others = 2 .
RM_SIM_SELECTIONS_SET call function 'RM_SIM_SELECTIONS_SET' exporting i_sscrfields = sscrfields tables c_pos_seltab = s_rpos c_simr_seltab = s_simr.
AIS_HSSPAR_FILL_FOR_SVA call function 'AIS_HSSPAR_FILL_FOR_SVA' exporting i_analysis_type = con_antype_mmcb i_col_mode = col_mode i_eval = p_eval i_datastr = '&RMD' i_view = p_sicht i_phid = p_phid i_phnode = p_phkn i_curr = p_curr i_date = p_date i_hori = p_hori i_scen = wrk_scenario i_val_area = p_valar "Note 1831824 importing e_spara = wrk_spara.
RM_EVAL_MTASK_IMEXKEY CALL FUNCTION 'RM_EVAL_MTASK_IMEXKEY' "// SEI 5.9.2000
AIS_METHODS_FILL_FOR_SENS call function 'AIS_METHODS_FILL_FOR_SENS' exporting i_flg_single_scen = flg_single_scen i_hori = p_hori i_scen = p_scen i_keyfig = p_keyfi1 i_tab_scen = s_scen[] importing e_eval_meth = wrk_eval_meth exceptions invalid_input = 1 others = 2.
AIS_SVA_SENSI call function 'AIS_SVA_SENSI' exporting i_analysis_type = con_antype_mmcb i_col_mode = col_mode i_keyfig = wrk_keyfig i_spara = wrk_spara i_eval_meth = wrk_eval_meth i_tab_char_sel = t_char_sel i_tab_pos_sel = s_rpos[] i_tab_simr_sel = s_simr[] i_display_param = wrk_display_param 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.