RBDCUS34 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 RBDCUS34 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.
Title: Consistency Check
Text Symbol: 001 = Checks for ...
Text Symbol: 002 = Receiving logical system
Text Symbol: 003 = Message type
Text Symbol: 004 = Object name
Text Symbol: 005 = Object type
Text Symbol: 006 = Check OK
Text Symbol: 007 = Check with warning or action required
Text Symbol: 008 = Check resulted in error
Text Symbol: 009 = Sending logical system
Text Symbol: 010 = Method
Text Symbol: 015 = Sender
Text Symbol: 020 = Receiver
Text Symbol: 100 = System Error
Text Symbol: 110 = Communication Error
INCLUDE RBDCNST2.
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.
DD_DD07V_GET CALL FUNCTION 'DD_DD07V_GET' EXPORTING DOMAIN_NAME = 'OB_TYP' LANGU = SY-LANGU WITHTEXT = 'X' TABLES DD07V_TAB = T_DD07V EXCEPTIONS ACCESS_FAILURE = 1 OTHERS = 2.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_callback_program = sy-repid i_callback_pf_status_set = g_status_set i_callback_user_command = g_user_command it_fieldcat = gt_fieldcat i_callback_top_of_page = 'TOP_OF_PAGE' i_structure_name = 'IDOC_BDM5' is_layout = gs_layout * it_excluding = gs_excluding[] IMPORTING e_exit_caused_by_caller = g_exit_caused_by_caller es_exit_caused_by_user = gs_exit_caused_by_user TABLES t_outtab = outtab EXCEPTIONS program_error = 1 OTHERS = 2.
VIEW_CHECK_MAINTENANCE_SYSTEM CALL FUNCTION 'VIEW_CHECK_MAINTENANCE_SYSTEM' EXPORTING CUSTMODEL = TBD00T-CUSTMODEL.
MMODEL_ADD_CONDAT_OBJECT CALL FUNCTION 'MMODEL_ADD_CONDAT_OBJECT' EXPORTING VIEW = TBD00T-CUSTMODEL SOURCE_SYSTEM = TBDLST-LOGSYS OBJECTNAME = X_OBJECTNAME OBJECTTYPE = X_OBJECTTYPE TABLES TARGET_SYSTEM = T_TARGET_SYSTEM.
REUSE_ALV_COMMENTARY_WRITE CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE' EXPORTING it_list_commentary = gt_list_top_of_page.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = icon_lights info = mess_activ IMPORTING RESULT = green EXCEPTIONS OTHERS = 1.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = icon_lights info = mess_activ IMPORTING RESULT = red EXCEPTIONS OTHERS = 1.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = icon_lights info = mess_activ IMPORTING RESULT = yellow EXCEPTIONS OTHERS = 1.
TRANSACTION_CALL_VIA_RFC CALL FUNCTION 'TRANSACTION_CALL_VIA_RFC' DESTINATION xt_synch-rfcdest EXPORTING TCODE = wa_outtab-tcode TABLES TRANSACTION_DATA = t_tdata EXCEPTIONS TCODE_NOT_EXIST = 01 SYSTEM_FAILURE = 10 message h_message COMMUNICATION_FAILURE = 11 message h_message OTHERS = 99.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.