RBDCUS03 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 RBDCUS03 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
BD70 - Synchronize Number Ranges
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_OBJECT = Number Range Object
Selection Text: S_LOGSYS = Receiving System
Title: Cross-System Comparison of Number Range Objects
Text Symbol: 001 = Home System
Text Symbol: 002 = Cross-System Display for Number Range:
Text Symbol: E01 = System
Text Symbol: E02 = Communication
Text Symbol: E03 = Other
Text Symbol: NKL = Read Number Range
Text Symbol: T01 = SubObj
Text Symbol: T02 = No.
Text Symbol: T03 = Year
Text Symbol: T04 = From Number
Text Symbol: T05 = To Number
Text Symbol: T06 = Number Status
Text Symbol: T07 = external
INCLUDE MBDCONST.
No SAP DATABASE tables are accessed within this REPORT code!
OWN_LOGICAL_SYSTEM_GET CALL FUNCTION 'OWN_LOGICAL_SYSTEM_GET' IMPORTING own_logical_system = own_system EXCEPTIONS own_logical_system_not_defined = 1 OTHERS = 2.
NUMBER_RANGE_INTERVAL_LIST CALL FUNCTION 'NUMBER_RANGE_INTERVAL_LIST' EXPORTING object = p_object TABLES interval = t_intervals EXCEPTIONS nr_range_nr1_not_found = 1 nr_range_nr1_not_intern = 2 nr_range_nr2_must_be_space = 3 nr_range_nr2_not_extern = 4 nr_range_nr2_not_found = 5 object_not_found = 6 subobject_must_be_space = 7 subobject_not_found = 8 OTHERS = 9.
RFC_DATA_DETERMINE_FOR_CHECKS CALL FUNCTION 'RFC_DATA_DETERMINE_FOR_CHECKS' EXPORTING rcvprn = t_tbdls-logsys IMPORTING destination_synch = rfc_destin EXCEPTIONS no_parnter_definition = 1 no_port = 2 no_logdes_in_port = 3 dest_does_not_exist = 4 r2_system = 5 external_system = 6 OTHERS = 7.
NUMBER_RANGE_INFO_GET_ALE CALL FUNCTION 'NUMBER_RANGE_INFO_GET_ALE' DESTINATION rfc_destin EXPORTING object = p_object TABLES t_intervals = t_intervals EXCEPTIONS system_failure = 2 MESSAGE e_msg communication_failure = 3 MESSAGE e_msg OTHERS = 4.
RFC_CONNECTION_CLOSE CALL FUNCTION 'RFC_CONNECTION_CLOSE' EXPORTING destination = rfc_destin EXCEPTIONS destination_not_open = 1 OTHERS = 2.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING I_STRUCTURE_NAME = 'BD70_STRUC' I_GRID_TITLE = fulltitel TABLES T_OUTTAB = t_outtab EXCEPTIONS OTHERS = 2 .
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.