RADACTOK 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 RADACTOK 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: Restrictions on Activation
INCLUDE RADBTMAC.
INCLUDE RADBTMA1.
INCLUDE RADBTOUM.
No SAP DATABASE tables are accessed within this REPORT code!
TR_SYS_PARAMS CALL FUNCTION 'TR_SYS_PARAMS' IMPORTING SYSTEMNAME = SYSTEM_NAME SYSTEMTYPE = SYSTEM_TYPE EXCEPTIONS NO_SYSTEMNAME = 01 NO_SYSTEMTYPE = 02.
TR_SYS_PARAMS CALL FUNCTION 'TR_SYS_PARAMS' IMPORTING SYSTEMNAME = SYSTEM_NAME SYSTEMTYPE = SYSTEM_TYPE EXCEPTIONS NO_SYSTEMNAME = 01 NO_SYSTEMTYPE = 02.
DD_NAVIGATOR_T CALL FUNCTION 'DD_NAVIGATOR_T' EXPORTING CLASS1 = CLASS1 CLASS2 = CLASS2 DEPENDENCY = 'U' DIRECTION = '>' EXP_STRUC = 'DD02L' OUT_REFRESH = 'X' PRID = PRID REFETCH = 'X' TABLES IN_TAB = OBJ_NAMES OUT_TAB = TABL_TAB EXCEPTIONS OTHERS = 01.
DD_NAVIGATOR_T CALL FUNCTION 'DD_NAVIGATOR_T' EXPORTING CLASS1 = CLASS1 CLASS2 = CLASS2 DEPENDENCY = 'U' DIRECTION = '>' EXP_STRUC = 'D010B' OUT_REFRESH = 'X' PRID = PRID REFETCH = 'X' TABLES IN_TAB = OBJ_NAMES OUT_TAB = PROG_TAB EXCEPTIONS OTHERS = 01.
DD_NAVIGATOR_T CALL FUNCTION 'DD_NAVIGATOR_T' EXPORTING CLASS1 = 'TABL' CLASS2 = CLASS2 DEPENDENCY = 'U' DIRECTION = '>' EXP_STRUC = 'D010B' OUT_REFRESH = 'X' PRID = PRID REFETCH = 'X' TABLES IN_TAB = DEPTAB OUT_TAB = PROG_TAB EXCEPTIONS OTHERS = 01.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.