RADDBDIF 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 RADDBDIF 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: Control Program for Processing the DBDIFF
INCLUDE RADBTOUM.
INCLUDE RADBTOU0.
No SAP DATABASE tables are accessed within this REPORT code!
DD_INDX_ACTIVATE CALL FUNCTION 'DD_INDX_ACTIVATE' EXPORTING ACT_CONTROL = 1 AUTH_CHK = 'X' GET_STATUS = 'A' INDEXNAME = DD12V_TAB-INDEXNAME PRID = PRID TABNAME = DD12V_TAB-SQLTAB IMPORTING RC = IRC DBACT = DBACT TABLES DD12V_TAB = DD12V_DUMMY DD17V_TAB = DD17V_DUMMY.
STRF_SETNAME CALL FUNCTION 'STRF_SETNAME' EXPORTING DIRTYPE = GC_ACTTYPE FILENAME = GV_PROTLIST SUBDIR = GC_SUBPROT IMPORTING FILE = PROT_FILE.
SUBST_APPEND_PROTOCOL CALL FUNCTION 'SUBST_APPEND_PROTOCOL' EXPORTING L_LEVEL = LEVEL L_SEVERITY = SEVERITY L_MSAG = ARBGB L_MSGNR = MSGNR L_NEWOBJ = NEWOBJ L_V1 = L_VAR1 L_V2 = L_VAR2 L_V3 = L_VAR3 L_V4 = L_VAR4 TABLES P_TAB = PROT_TAB.
SUBST_WRITE_PROTOCOL CALL FUNCTION 'SUBST_WRITE_PROTOCOL' EXPORTING ACTTYPE = GC_ACTTYPE IFNAME = PROT_FILE IMPORTING EFNAME = PROT_FILE TABLES P_TAB = PROT_TAB.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.