SAP Reports / Programs | Basis Components | ABAP Workbench, Java IDE and Infrastructure | Activation Program, Conversion Program, DB Utility, MC, SPDD(BC-DWB-DIC-AC) SAP BC

RUTCHKAC SAP ABAP Report - Check-Activation of ABAP Dictionary Objects







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


Text pool values


Selection Text: P_WARN = Display Warnings
Title: Check-Activation of ABAP Dictionary Objects


INCLUDES used within this REPORT RUTCHKAC

INCLUDE RADBTMAC.
INCLUDE RADBTOUM.


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_DOMA_ACT CALL FUNCTION 'DD_DOMA_ACT' EXPORTING doma_name = ddname act_mode = actmode prid = prid IMPORTING act_result = rc EXCEPTIONS OTHERS = 8.

DD_DTEL_ACT CALL FUNCTION 'DD_DTEL_ACT' EXPORTING roll_name = ddname act_mode = actmode prid = prid IMPORTING act_result = rc EXCEPTIONS OTHERS = 8.

DD_TTYP_ACT CALL FUNCTION 'DD_TTYP_ACT' EXPORTING ttyp_name = ddname prid = prid act_mode = actmode IMPORTING act_result = rc EXCEPTIONS OTHERS = 8.

DD_TABL_ACT CALL FUNCTION 'DD_TABL_ACT' EXPORTING tabname = ddname act_mode = actmode prid = prid IMPORTING act_result = rc EXCEPTIONS * differentiate beween object exceptions (which then let rc = 8) * and tool exceptions which are handled by 'set_rc_except' actok_failure = 0 dbchange_failure = 0 lockact_failure = 1 ntab_gen_failure = 0 put_failure = 2 read_failure = 0 "raised when expand fails unlockact_failure = 4 access_failure = 5 OTHERS = 6.

DD_SQLT_ACT call function 'DD_SQLT_ACT' exporting tabname = sqlname AUTH_CHK = 'X' FUNCT = 'CHK' GET_STATE = 'M' WRITE_ENDMESS = 'X' IMPORTING RC = rc CHANGING PRID = prid EXCEPTIONS NOT_CREATED = 1 WRONG_INPUT_PARAMETER = 2 OTHERS = 3.

DD_E071_TO_DD CALL FUNCTION 'DD_E071_TO_DD' EXPORTING object = objdir-object obj_name = e071_objname IMPORTING name = tabname "#EC DOM_EQUAL id = indexname "#EC DOM_EQUAL EXCEPTIONS OTHERS = 8.

DD_INDX_ACTIVATE CALL FUNCTION 'DD_INDX_ACTIVATE' EXPORTING act_control = 9 "Prüfaktivierung get_status = state indexname = indexname prid = prid tabname = tabname IMPORTING rc = rc TABLES dd12v_tab = dd12v_dummy dd17v_tab = dd17v_dummy.

DD_TABT_ACT CALL FUNCTION 'DD_TABT_ACT' EXPORTING tabname = ddname act_mode = actmode prid = prid IMPORTING act_result = rc EXCEPTIONS OTHERS = 8.

DD_VIEW_ACT CALL FUNCTION 'DD_VIEW_ACT' EXPORTING viewname = ddname get_state = state act_mode = 9 prid = prid IMPORTING rc = rc EXCEPTIONS OTHERS = 8.

DD_SHLP_ACT CALL FUNCTION 'DD_SHLP_ACT' EXPORTING shlpname = ddname actmode = mode prid = prid IMPORTING rc = rc EXCEPTIONS OTHERS = 8.

DD_ENQU_ACT CALL FUNCTION 'DD_ENQU_ACT' EXPORTING enquname = ddname actmode = mode prid = prid IMPORTING rc = rc EXCEPTIONS OTHERS = 8.

MC_ACT_MCO CALL FUNCTION 'MC_ACT_MCO' EXPORTING act_control = 'CH' act_mconame = mconame prid = prid IMPORTING rc = rc.

MC_ACT_MCID CALL FUNCTION 'MC_ACT_MCID' EXPORTING act_mconame = mconame act_mcid = mcid act_control = 'CH' prid = prid IMPORTING rc = rc.



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