DO_VERIFY_RFC_INFRASTRUCTURE SAP Method Verify integrity of defined RFC infrastructure









Below is documentation, parameters and attributes of ABAP Method DO_VERIFY_RFC_INFRASTRUCTURE within SAP class DTINF_IF_INFORMATION. There is also a number of example ABAP code snipts to help you use the functionality of this method.

This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name DTINF_IF_INFORMATION into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.


Method Type - Instance

This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.

The following technical details of method DO_VERIFY_RFC_INFRASTRUCTURE can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method DO_VERIFY_RFC_INFRASTRUCTURE

.

NameTypeData TypeDescriptionDefault Value
ET_CHANGED_RFCExportingTYPE
DTINF_TT_RFC_CONN_KEY
Table of RFC Connections
ET_CHANGED_RFC_STATEExportingTYPE
DTINF_TT_RFC_STATE
System information
ET_SYS_COMPExportingTYPE
DTINF_TT_SYS_COMP
Structure of DTINF_S_SYS_COMP_KEY
ET_SYS_INFOExportingTYPE
DTINF_TT_SYS_INFO
Structure for DTINF_SYS_INFO
ET_UNCHANGED_RFCExportingTYPE
DTINF_TT_RFC_CONN_KEY
Table of RFC Connections
ET_UNCHANGED_RFC_STATEExportingTYPE
DTINF_TT_RFC_STATE
Table for system information



Exceptions of Method DO_VERIFY_RFC_INFRASTRUCTURE

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO DTINF_IF_INFORMATION.
DATA: lv_ET_CHANGED_RFC TYPE DTINF_TT_RFC_CONN_KEY,
lv_ET_CHANGED_RFC_STATE TYPE DTINF_TT_RFC_STATE,
lv_ET_SYS_COMP TYPE DTINF_TT_SYS_COMP,
lv_ET_SYS_INFO TYPE DTINF_TT_SYS_INFO,
lv_ET_UNCHANGED_RFC TYPE DTINF_TT_RFC_CONN_KEY,
lv_ET_UNCHANGED_RFC_STATE TYPE DTINF_TT_RFC_STATE,
lv_other TYPE c.

CALL METHOD lo_class=>DO_VERIFY_RFC_INFRASTRUCTURE(
IMPORTING
ET_CHANGED_RFC = lv_ET_CHANGED_RFC
ET_CHANGED_RFC_STATE = lv_ET_CHANGED_RFC_STATE
ET_SYS_COMP = lv_ET_SYS_COMP
ET_SYS_INFO = lv_ET_SYS_INFO
ET_UNCHANGED_RFC = lv_ET_UNCHANGED_RFC
ET_UNCHANGED_RFC_STATE = lv_ET_UNCHANGED_RFC_STATE ).

Links to Related Class(s)

DTINF_IF...
Full list of available SAP object classes

Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!