SAP Reports / Programs

RS_CHECK_TYPES_CONFLICTS SAP ABAP Report - Determine conflicts between types in type groups and Dictionary types







RS_CHECK_TYPES_CONFLICTS 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 RS_CHECK_TYPES_CONFLICTS 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 RS_CHECK_TYPES_CONFLICTS. "Basic submit
SUBMIT RS_CHECK_TYPES_CONFLICTS AND RETURN. "Return to original report after report execution complete
SUBMIT RS_CHECK_TYPES_CONFLICTS 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: ORIGINAL = Only in Original System
Selection Text: TESTMODE = Test Mode (w/o DB Operations)
Selection Text: TYPENAME = Type Group (Test)
Title: Determine conflicts between types in type groups and Dictionary types


INCLUDES used within this REPORT RS_CHECK_TYPES_CONFLICTS

No INCLUDES are used within this REPORT code!


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:

INT_RFC_CHECK_ACCESS CALL FUNCTION 'INT_RFC_CHECK_ACCESS' EXPORTING i_check_gsubt_active = '' EXCEPTIONS access_denied = gsub_cx_access_denied ignore_global_services = gsub_cx_ignore_global_services " do not check it here: GSUBTYPES check is not yet active rfc_failure = gsub_cx_rfc_failure OTHERS = gsub_cx_rfc_failure.

POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = 'Globale Prüfung aller Typgruppen' "#EC * text_question = 'Wollen Sie die Prüfung durchführen?' "#EC * * text_button_1 = 'Ja'(p01) * text_button_2 = 'Nein'(p02) default_button = '1' display_cancel_button = 'X' IMPORTING answer = l_char1 EXCEPTIONS OTHERS = 1.

SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = 'Select from TADIR...'. "#EC NOTEXT

TYPD_GET_STATE_FOR_SE11 CALL FUNCTION 'TYPD_GET_STATE_FOR_SE11' EXPORTING typdname = l_tygrname IMPORTING state = l_state EXCEPTIONS reps_not_exist = 1 OTHERS = 2.

SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = l_message.

INT_TYPE_SCAN_ALL_STYP CALL FUNCTION 'INT_TYPE_SCAN_ALL_STYP' EXPORTING i_typepool_name = l_tygrname i_version = 'A' TABLES et_subtypes = lt_subtypes_active EXCEPTIONS parameter_missing = 1 invalid_parameter = 2 error_occured = 3 object_not_found = 4 OTHERS = 5.

SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = l_message.

RS_SUBTYPES_CHECK_GTADIR_NAME CALL FUNCTION 'RS_SUBTYPES_CHECK_GTADIR_NAME' DESTINATION g_destination EXPORTING i_subtype_kind = gsub_c_styp i_get_first_conflict = '' " list all conflicts i_ignore_exceptions = '' " * reason: report selects and checks all type pools from TADIR, not only originals! i_client_saprl = sy-saprl "current SAP_BASIS release TABLES it_subtypes = lt_subtypes_active et_tadir_types = lt_other_types EXCEPTIONS system_failure = gsub_cx_system_failure MESSAGE l_message communication_failure = gsub_cx_communication_failure MESSAGE l_message access_denied = gsub_cx_rfc_failure permission_error = gsub_cx_permission_error OTHERS = gsub_cx_error_occured.

GSUBT_CONFLICTS_INSERT CALL FUNCTION 'GSUBT_CONFLICTS_INSERT' EXPORTING i_tadir_objname = i_gsubt-tadir_obj_name i_tadir_object = gsub_c_type i_subtype_kind = gsub_c_styp it_other_types = lt_other_types EXCEPTIONS others = 0.



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