SAP Reports / Programs

RBDCHECK SAP ABAP Report - Check IDoc structure against database tables







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


ABAP code to call this SAP report using the submit statement

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.






SUBMIT RBDCHECK. "Basic submit
SUBMIT RBDCHECK AND RETURN. "Return to original report after report execution complete
SUBMIT RBDCHECK VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


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)


INCLUDES used within this REPORT RBDCHECK

No INCLUDES are used within this REPORT code!


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

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.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name RBDCHECK or its description.