RJBRSTDB 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 RJBRSTDB into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
JBAI - Load saved 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_WAERS = Currency of the Evaluation
Selection Text: P_STAND = Saved Dataset
Selection Text: P_AWDAT = Date of Evaluation
Selection Text: P_AUSW = Evaluation Type
Title: Value Saved Dataset: NPV
Text Symbol: U02 = Change
Text Symbol: U01 = Selected Price Area:
Text Symbol: NZB = Unassigned Base Portfolios
Text Symbol: LEL = List does not contain data
Text Symbol: L08 = Profit/Loss
Text Symbol: L07 = NPV New MD
Text Symbol: L05 = NPV Old MD
Text Symbol: L03 = Currency
Text Symbol: K07 = Scenario
Text Symbol: K06 = Date of Old Market Data
Text Symbol: K05 = Evaluation Type
Text Symbol: K04 = Date of New Market Data
Text Symbol: K02 = Portfolio Hierarchy
Text Symbol: K01 = View
Text Symbol: ERL = Errors Found While Back Testing
Text Symbol: ALL = All Curves
Text Symbol: 034 = Class
Text Symbol: 033 = Securities
Text Symbol: 024 = Securities Index
Text Symbol: 023 = Stock Indexes
Text Symbol: 021 = % Points
Text Symbol: 020 = Abs. Shift
Text Symbol: 019 = Rel. Shift
Text Symbol: 018 = Term
Text Symbol: 017 = V.Type
Text Symbol: 016 = Volatilities
Text Symbol: 015 = To Crcy
Text Symbol: 014 = Fr.Crcy
Text Symbol: 013 = Currencies
Text Symbol: 012 = Currency
Text Symbol: 011 = YC Type
Text Symbol: 010 = Yield Curve(s)
INCLUDE: RJBRSOTO.
No SAP DATABASE tables are accessed within this REPORT code!
TV_INIT_READ_ATSYC CALL FUNCTION 'TV_INIT_READ_ATSYC' EXPORTING AUSWT = P_AUSW EXCEPTIONS EVALID_NOT_FOUND = 1 OTHERS = 2.
EH_INIT_ERROR_ITAB CALL FUNCTION 'EH_INIT_ERROR_ITAB'.
RM_LOAD_HIST_STATE_OF_DATA CALL FUNCTION 'RM_LOAD_HIST_STATE_OF_DATA' EXPORTING HIST_STATE_ID = P_STAND IMPORTING SICHTID = IS_JBRHSSPAR-SICHTID PHID = IS_JBRHSSPAR-PHID PKNOTEN = IS_JBRHSSPAR-PKNOTEN DATE = IS_JBRHSSPAR-HORIZONT TABLES ET_FOB = IT_JBRFOB ET_PHBAUM = IT_JBRPHBAUM ET_PHTEXT = IT_JBRNAMEDAT ET_PHZUORDN = IT_JBRZUORDN ERROR_ITAB = IT_BAPIERR EXCEPTIONS NO_SUCH_STATE_OF_DATA = 1 SFGDT_REBUILD_ERROR = 2 OTHERS = 3.
EH_APPEND_TO_ERROR_ITAB CALL FUNCTION 'EH_APPEND_TO_ERROR_ITAB' EXPORTING LOC_ERROR_TAB = IT_BAPIERR S_PROT = ' ' S_ERR_TAB = 'X' EXCEPTIONS OTHERS = 1.
RM_NPV_BACK CALL FUNCTION 'RM_NPV_BACK' EXPORTING SPARA = IS_JBRHSSPAR TABLES I_FOB = IT_JBRFOB I_JBRPHBAUM = IT_JBRPHBAUM I_ZUORDN = IT_JBRZUORDN E_JBRRPSEN = IT_JBRRPSEN EXCEPTIONS OTHERS = 1.
EH_SHOW_ERROR_ITAB_NEW CALL FUNCTION 'EH_SHOW_ERROR_ITAB_NEW' EXPORTING TITLEBAR = TEXT-ERL i_auswtyp = '2'. "VaR
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.