RJBRNROB 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 RJBRNROB into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
JBRNR - Number Range Administration
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_ADAPT = Adjust No. Range Lev. to Data
Selection Text: P_GET = Determine Number Range Level
Selection Text: P_OBDE = Delete Number Range Object
Selection Text: P_OBIN = Create Number Range Object
Selection Text: P_RADE = Delete Interval
Selection Text: P_RAIN = Create Interval
Selection Text: P_RESET = Reset Number Range Level
Selection Text: P_SICHT = View
Title: Number Range Administration for Base Portfolios
Text Symbol: 001 = Operat.
Text Symbol: 002 = Continue?
Text Symbol: 003 = Confirmatn Prompt
Text Symbol: 004 = Number Range in View
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING TITLEBAR = TEXT-003 DIAGNOSE_OBJECT = 'JBR_NROB_MAINTAIN' TEXT_QUESTION = TEXT-002 * TEXT_BUTTON_1 = 'Ja'(001) * ICON_BUTTON_1 = ' ' * TEXT_BUTTON_2 = 'Nein'(002) * ICON_BUTTON_2 = ' ' * DEFAULT_BUTTON = '1' * DISPLAY_CANCEL_BUTTON = 'X' USERDEFINED_F1_HELP = 'JBR_NROB_MAINTAIN_LONG' START_COLUMN = 15 * START_ROW = 6 * POPUP_TYPE = IMPORTING ANSWER = ANSWER * TABLES * PARAMETER = EXCEPTIONS TEXT_NOT_FOUND = 1 OTHERS = 2.
RM_NROB_INSERT CALL FUNCTION 'RM_NROB_INSERT' EXPORTING P_SICHT = P_SICHT P_OBJECT = OBJECT * IMPORTING * OBJECT_RC = * TABLES * OBJECT_ERRORS = EXCEPTIONS OBJECT_INSERT_ERROR = 1 OBJECT_SAVE_ERROR = 2 OTHERS = 3.
NUMBER_RANGE_OBJECT_DELETE CALL FUNCTION 'NUMBER_RANGE_OBJECT_DELETE' EXPORTING * INDICATOR = ' ' * LANGUAGE = SY-LANGU OBJECT = OBJECT EXCEPTIONS DELETE_NOT_ALLOWED = 1 OBJECT_NOT_FOUND = 2 WRONG_INDICATOR = 3 OTHERS = 4.
RM_NRRANGE_INSERT CALL FUNCTION 'RM_NRRANGE_INSERT' EXPORTING P_OBJECT = OBJECT IMPORTING RANGE_ERROR = RANGE_ERROR * ERROR_OCCURED = * WARNING_OCCURED = * TABLES * RANGE_ERROR_IV = EXCEPTIONS INTERVAL_INSERT_ERROR = 1 INTERVAL_SAVE_ERROR = 2 OTHERS = 3.
RM_NRRANGE_DELETE CALL FUNCTION 'RM_NRRANGE_DELETE' EXPORTING P_OBJECT = OBJECT * IMPORTING * RANGE_ERROR = * ERROR_OCCURED = * WARNING_OCCURED = * TABLES * RANGE_ERROR_IV = EXCEPTIONS OBJECT_NOT_FOUND = 1 OTHERS = 2.
ISB_GET_CURRENT_BPID CALL FUNCTION 'ISB_GET_CURRENT_BPID' EXPORTING SICHTID = P_SICHT IMPORTING BPID = BPID EXCEPTIONS OBJECT_NOT_FOUND = 1 INTERVAL_NOT_FOUND = 2 NUMBER_ERROR = 3 OTHERS = 4.
ISB_INIT_BPID CALL FUNCTION 'ISB_INIT_BPID' EXPORTING SICHTID = P_SICHT EXCEPTIONS OBJECT_NOT_FOUND = 1 INTERVAL_NOT_FOUND = 2 INIT_ERROR = 3 OTHERS = 4.
ISB_RM_GET_RMB_FOR_SICHT CALL FUNCTION 'ISB_RM_GET_RMB_FOR_SICHT' EXPORTING SICHT = P_SICHT IMPORTING RMBID = RMBID EXCEPTIONS SICHT_NOT_FOUND = 1 OTHERS = 2.
NUMBER_RANGE_INTERVAL_UPDATE CALL FUNCTION 'NUMBER_RANGE_INTERVAL_UPDATE' EXPORTING OBJECT = OBJECT * importing * error = * error_occured = * warning_occured = TABLES ERROR_IV = ERROR_IV INTERVAL = IT_INRIV EXCEPTIONS OBJECT_NOT_FOUND = 1 OTHERS = 2.
NUMBER_RANGE_UPDATE_CLOSE CALL FUNCTION 'NUMBER_RANGE_UPDATE_CLOSE' EXPORTING OBJECT = OBJECT EXCEPTIONS NO_CHANGES_MADE = 1 OBJECT_NOT_INITIALIZED = 2 OTHERS = 3.
RM_TCODE_AUTH_CHECK CALL FUNCTION 'RM_TCODE_AUTH_CHECK'.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.