RBDCHECK is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for The 'RBDCHECK' program checks that the IDOC segments agree with the corresponding database tables...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter RBDCHECK 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: Check IDoc structure against database tables
Text Symbol: 100 = Results of evaluations
Text Symbol: 101 = There are fields in & that are not in &
Text Symbol: 102 = All fields in & are also contained in &
Text Symbol: 105 = Real table & & &
Text Symbol: I01 = Fields with initial value problems
Text Symbol: U01 = Units/currencies
Text Symbol: 001 = Message Type
Text Symbol: 011 = MATMAS
Text Symbol: 012 = DEBMAS
Text Symbol: 013 = CREMAS
Text Symbol: 021 = (Material)
Text Symbol: 022 = (Debtor)
Text Symbol: 023 = (Creditor)
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RS_TREE_CONSTRUCT CALL FUNCTION 'RS_TREE_CONSTRUCT' TABLES NODETAB = NODE_LIST.
RS_TREE_LIST_DISPLAY CALL FUNCTION 'RS_TREE_LIST_DISPLAY' EXPORTING * callback_program = ' ' CALLBACK_COLOR_DISPLAY = ' ' CHECK_DUPLICATE_NAME = '1' COLOR_OF_LINK = '1' COLOR_OF_NODE = '4' LOWER_CASE_SENSITIVE = 'X' MODIFICATION_LOG = ' ' NODE_LENGTH = 12 TEXT_LENGTH = 60 TEXT_LENGTH1 = 10 TEXT_LENGTH2 = 15 SCREEN_START_COLUMN = 0 SCREEN_START_LINE = 0 SCREEN_END_COLUMN = 0 SCREEN_END_LINE = 0 SUPPRESS_NODE_OUTPUT = ' '.
NAMETAB_GET CALL FUNCTION 'NAMETAB_GET' EXPORTING TABNAME = TABLE_NAME TABLES NAMETAB = SEGMENT_DATA-SEG_DNTAB_LIST EXCEPTIONS OTHERS = 1.
NAMETAB_GET CALL FUNCTION 'NAMETAB_GET' EXPORTING TABNAME = TABLE_NAME TABLES NAMETAB = TMP_DNTAB_LIST 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.