SAP Reports / Programs

RS_SECURITY_TRUST_RELATIONS SAP ABAP Report - Security of Trust Relationships







RS_SECURITY_TRUST_RELATIONS is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This report is used to display trust relationships (as defined in SAP Note 1491645) from all systems trusted by the current system, and from all systems that trust the current system...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.

If you would like to execute this report or see the full code listing simply enter RS_SECURITY_TRUST_RELATIONS 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_SECURITY_TRUST_RELATIONS. "Basic submit
SUBMIT RS_SECURITY_TRUST_RELATIONS AND RETURN. "Return to original report after report execution complete
SUBMIT RS_SECURITY_TRUST_RELATIONS VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Title: Security of Trust Relationships
Text Symbol: 275 = trusts these systems:
Text Symbol: 301 = Method 2 (Recommended)
Text Symbol: 302 = Method 1
Text Symbol: 307 = Delete
Text Symbol: 308 = Delete Trust Relationship To
Text Symbol: 310 = These systems trust
Text Symbol: 311 = Security Method 2 (Recommended)
Text Symbol: 312 = Security Method 1 (Not Recommended)
Text Symbol: 315 = Delete Trust Relationship
Text Symbol: AU1 = S_ADMI_FCD
Text Symbol: DS0 = Destination
Text Symbol: TR0 = A trusted system is not supported


INCLUDES used within this REPORT RS_SECURITY_TRUST_RELATIONS

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:

POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = lv_title text_question = lv_question default_button = '1' display_cancel_button = space popup_type = 'ICON_MESSAGE_INFORMATION' IMPORTING answer = lv_answer EXCEPTIONS OTHERS = 1.

RFC_MODIFY_TRUSTING_SYSTEM CALL FUNCTION 'RFC_MODIFY_TRUSTING_SYSTEM' DESTINATION wa_rfcsysacl-rfcdest EXPORTING action = 'D' rfctrust_id = wa_rfcsysacl-rfctrustsy rfctrust_sy = wa_rfcsysacl-rfcsysid EXCEPTIONS destination_not_exist = 1 communication_failure = 2 MESSAGE l_msg system_failure = 3 MESSAGE l_msg.

RFC_MODIFY_TRUSTED_SYSTEM CALL FUNCTION 'RFC_MODIFY_TRUSTED_SYSTEM' EXPORTING action = 'D' rfcsystem_id = wa_system-sysid "from local SID IMPORTING rfc_error_message = sysacl_error_message EXCEPTIONS authority_not_available = 1 trusted_system_not_supported = 2 security_entry_already_exists = 3 action_not_supported = 4 information_failure = 5 rfc_exception_raised = 6 system_already_registerd = 7 OTHERS = 8.

ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = icon_green_light info = 'Verfahren 2 (empfohlen)'(301) IMPORTING RESULT = lv_icon_green_light.

ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = icon_red_light info = 'Verfahren 1'(302) IMPORTING RESULT = lv_icon_red_light.

ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = icon_delete info = 'Löschen'(307) IMPORTING RESULT = lv_icon_delete.

SLIC_GET_LICENCE_NUMBER CALL FUNCTION 'SLIC_GET_LICENCE_NUMBER' IMPORTING license_number = lv_licnr.

LVC_FIELDCATALOG_MERGE CALL FUNCTION 'LVC_FIELDCATALOG_MERGE' EXPORTING i_structure_name = 'RFC_TT_SYSTEM' CHANGING ct_fieldcat = gt_fieldcat[] EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3.

HELP_OBJECT_SHOW CALL FUNCTION 'HELP_OBJECT_SHOW' EXPORTING dokclass = 'RE' doklangu = sy-langu dokname = sy-repid TABLES links = links EXCEPTIONS OTHERS = 3.



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