SAP Reports / Programs

RADIXCDB SAP ABAP Report - ABAP/4 Dictionary: Checking the Index Activation Program Wth Database







RADIXCDB 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 RADIXCDB 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 RADIXCDB. "Basic submit
SUBMIT RADIXCDB AND RETURN. "Return to original report after report execution complete
SUBMIT RADIXCDB VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Title: ABAP/4 Dictionary: Checking the Index Activation Program Wth Database


INCLUDES used within this REPORT RADIXCDB

INCLUDE RADIXINC.
INCLUDE RADBTMAC.


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:

DD_INDEX_NAME call function 'DD_INDEX_NAME' exporting indexname = tbatg_tab-indname tabname = tbatg_tab-tabname importing dbindex = dbindex.

DB_GET_INDEXES call function 'DB_GET_INDEXES' exporting tabname = itabname tables dbindexes = dbindexes dbindflds = dbindflds.

DB_DROP_INDEX_S call function 'DB_DROP_INDEX_S' exporting dbindex = dbindex prid = prid tabname = tabname db_check_flag = 'X' no_exec = 'X' importing subrc = irc tables statements = statements exceptions index_not_dropped = 01 program_not_generated = 02 program_not_written = 03.

DB_CREATE_INDEX_S call function 'DB_CREATE_INDEX_S' exporting dbindex = dbindex prid = prid tabname = tabname unique = dd12v_tab-uniqueflag no_exec = 'X' db_check_flag = ' ' dbspec_info = dbspec_info tables ddfldnames = ddfldnames statements = statements exceptions index_exists = 01 index_not_created = 02 program_not_generated = 03 program_not_written = 04 table_does_not_exist = 05.

WRITE_AND_CALL_DBPROG call function 'WRITE_AND_CALL_DBPROG' exporting prid = prid max_severity = severity importing rc = irc tables statements = statements exceptions program_not_written = 01 sql_error_occured = 02.

DD_AUTH_CHECK call function 'DD_AUTH_CHECK' exporting action = action " ACTION_CODE = ' ' " DEVCLASS = ' ' " MSG_TYP = ' ' objname = tbatg_tab-tabname objtype = 'INDX' importing rc = irc exceptions action_unsupported = 01 objtype_unsupported = 02 param_error = 03.

DB_EXISTS_TABLE call function 'DB_EXISTS_TABLE' exporting tabname = tabname importing subrc = irc exceptions others = 1.

DD_DD_TO_E071 call function 'DD_DD_TO_E071' exporting type = dcobj-type name = dcobj-name id = dcobj-id importing object = object obj_name = obj_name exceptions illegal_input = 1 others = 2.

SFW_GET_SWITCHPOS call function 'SFW_GET_SWITCHPOS' tables switchtab = switchtab.



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