RADIN003 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 RADIN003 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.
INCLUDE: RADBTMAC, RADBTOUM, RADBTLOM, RADBTST0.
INCLUDE: RADBTMAC, RADBTOUM, RADBTLOM, RADBTST0.
INCLUDE: RADBTMAC, RADBTOUM, RADBTLOM, RADBTST0.
No SAP DATABASE tables are accessed within this REPORT code!
DD_OBJ_DEL call function 'DD_OBJ_DEL' exporting object_name = tab object_type = 'TABL' del_state = 'M' prid = prid exceptions wrong_del_state = 1 wrong_object_type = 2 others = 3.
DD_CALL_DB_SQL call function 'DD_CALL_DB_SQL' exporting prid = prid tables codetab = stmt sql_error_codes = sqlcodes exceptions sql_error_occured = 1 others = 2.
DB_GET_TABLE_FIELDS call function 'DB_GET_TABLE_FIELDS' exporting tabname = org_tab importing subrc = rc tables dbfields = fld.
DD_SUB_ROUT_POOL call function 'DD_SUB_ROUT_POOL' exporting prid = prid importing repid = repid * POOLS = tables stmt_tab = code exceptions illegal_value = 1 no_of_pools_exceeded = 2 syntax_error = 3 others = 4.
DD_TABL_UNI_COPY call function 'DD_TABL_UNI_COPY' exporting src_name = orig dst_name = tabn force = 'X' get_state = get_state put_state = put_state prid = prid withtext = 'X' exceptions illegal_value = 1 op_failure = 2 copying_refused = 3 others = 4.
DD_TABL_ACTM call function 'DD_TABL_ACTM' exporting mode = 12 prid = prid tabname = tabn exceptions dbchange_failure = 1 ntab_gen_failure = 2 put_failure = 3 read_failure = 4 access_failure = 5 others = 6.
DD_GET_NAMETAB call function 'DD_GET_NAMETAB' exporting tabname = tabn importing x030l_wa = x030l_wa tables x031l_tab = x031l_tab exceptions not_found = 1 no_fields = 2 others = 3.
DB_TMPTAB_CRE call function 'DB_TMPTAB_CRE' exporting tabname_orig = tabn prid = prid x030l_wa = x030l_wa tabname_tmp = tabn drop_cre = 'X' tables x031l_tab = x031l_tab exceptions illegal_value = 1 op_failure = 2 others = 3.
DB_EXISTS_TABLE call function 'DB_EXISTS_TABLE' exporting tabname = source importing subrc = rc.
DB_RENAME_TABLE call function 'DB_RENAME_TABLE' exporting prid = 0 tabname_new = target tabname_old = source exceptions new_table_exists = 1 old_table_does_not_exist = 2 program_not_generated = 3 program_not_written = 4 others = 5.
DB_EXISTS_TABLE call function 'DB_EXISTS_TABLE' exporting tabname = tab importing subrc = rc.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.