SAP Reports / Programs

RSDB4DDC SAP ABAP Report - iSeries: Display Data Dictionary Information (Overview) within ST04







RSDB4DDC is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This program displays ABAP Dictionary information about tables and views defined in SAP systems...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 RSDB4DDC 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 RSDB4DDC. "Basic submit
SUBMIT RSDB4DDC AND RETURN. "Return to original report after report execution complete
SUBMIT RSDB4DDC VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Title: iSeries: Display Data Dictionary Information (Overview) within ST04
Text Symbol: 031 = (Generic buffering)
Text Symbol: 030 = (Resident, fully buffered)
Text Symbol: 029 = (Partially buffered)
Text Symbol: 028 = (Not buffered)
Text Symbol: 027 = Bufstate
Text Symbol: 026 = Buffering: :
Text Symbol: 025 = Table :
Text Symbol: 024 = And/Or
Text Symbol: 023 = Constants
Text Symbol: 022 = Neg.
Text Symbol: 021 = Operator
Text Symbol: 020 = View Basis Tables :
Text Symbol: 019 = Fieldname
Text Symbol: 018 = Unique
Text Symbol: 017 = Desc.
Text Symbol: 016 = Position
Text Symbol: 015 = Name
Text Symbol: 014 = Table Name
Text Symbol: 013 = No secondary indexes defined.
Text Symbol: 012 = Primary Key Fields :
Text Symbol: 011 = Secondary Indexes :
Text Symbol: 010 = View Selection Condition :
Text Symbol: 009 = View Join Condition :
Text Symbol: 008 = View is created over :
Text Symbol: 007 = by :
Text Symbol: 006 = Last changed at :
Text Symbol: 005 = Short info :
Text Symbol: 004 = Object Class :
Text Symbol: 003 = SQL object :
Text Symbol: 002 = Object name :
Text Symbol: 001 = Information from SAP dictionary for object:


INCLUDES used within this REPORT RSDB4DDC

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:

DDIF_NAMETAB_GET CALL FUNCTION 'DDIF_NAMETAB_GET' EXPORTING TABNAME = P_OBJNAME IMPORTING X030L_WA = I_X030L_WA EXCEPTIONS NOT_FOUND = 1 OTHERS = 2.

DDIF_VIEW_GET CALL FUNCTION 'DDIF_VIEW_GET' EXPORTING NAME = P_OBJDESCRIPTION-NAME STATE = 'A' LANGU = SY-LANGU IMPORTING * gotstate = DD25V_WA = I_DD25V_WA TABLES DD26V_TAB = I_DD26V_TAB "basis tables * dd27p_tab = "view fields DD28J_TAB = I_DD28J_TAB "join condition DD28V_TAB = I_DD28V_TAB "selection condition EXCEPTIONS ILLEGAL_INPUT = 1 OTHERS = 2.

DDIF_TABL_GET CALL FUNCTION 'DDIF_TABL_GET' EXPORTING NAME = P_OBJDESCRIPTION-NAME STATE = 'A' LANGU = SY-LANGU IMPORTING * GOTSTATE = DD02V_WA = I_DD02V_WA * DD09L_WA = "technical settings TABLES DD03P_TAB = I_DD03P_TAB "table fields/primary key * DD05M_TAB = "foreign key fields * DD08V_TAB = "foreign keys DD12V_TAB = I_DD12V_TAB "indexes DD17V_TAB = I_DD17V_TAB "index fields EXCEPTIONS ILLEGAL_INPUT = 1 OTHERS = 2.

RS_DD_SHOW CALL FUNCTION 'RS_DD_SHOW' EXPORTING OBJNAME = OBJ_DESCRIPTION-NAME OBJTYPE = OBJ_DESCRIPTION-TABTYPE.



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 RSDB4DDC or its description.