CHECK_REMOTE_OBJECT SAP Method of class CL_PROXY_EXTERNAL_KEY









Below is documentation, parameters and attributes of ABAP Method CHECK_REMOTE_OBJECT within SAP class CL_PROXY_EXTERNAL_KEY. 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 CL_PROXY_EXTERNAL_KEY into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.


Method Type - Static

This is a Static Method so you can call it directly

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

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


Parameters of Method CHECK_REMOTE_OBJECT

.

NameTypeData TypeDescriptionDefault Value
DEVCLASSImportingTYPE
CSEQUENCE
GEN_APPLImportingTYPE
SPRX_HDR-GEN_APPL
IDImportingTYPE
PRX_ID
Proxy Generation: Unique ID of a Proxy Object
R3_NAMEImportingTYPE
CSEQUENCE
R3_TYPEImportingTYPE
SPRX_HDR-OBJECT
SYSNAMEImportingTYPE
SRCSYSTEM
Name of an SAP System in the (active) transp. configuration
RVALReturningTYPE
ABAP_BOOL



Exceptions of Method CHECK_REMOTE_OBJECT

This method does not have any exceptions

Example ABAP coding


DATA: lv_DEVCLASS TYPE CSEQUENCE,
lv_GEN_APPL TYPE SPRX_HDR-GEN_APPL,
lv_ID TYPE PRX_ID,
lv_R3_NAME TYPE CSEQUENCE,
lv_R3_TYPE TYPE SPRX_HDR-OBJECT,
lv_RVAL TYPE ABAP_BOOL,
lv_SYSNAME TYPE SRCSYSTEM,
lv_other TYPE c.

CALL METHOD CL_PROXY_EXTERNAL_KEY=>CHECK_REMOTE_OBJECT(
EXPORTING
DEVCLASS = lv_DEVCLASS
GEN_APPL = lv_GEN_APPL
ID = lv_ID
R3_NAME = lv_R3_NAME
R3_TYPE = lv_R3_TYPE
SYSNAME = lv_SYSNAME
RECEIVING
RVAL = lv_RVAL )



"Alternate coding for Method Call with returning parameter
lv_RVAL = CL_PROXY_EXTERNAL_KEY=>CHECK_REMOTE_OBJECT(
EXPORTING
DEVCLASS = lv_DEVCLASS
GEN_APPL = lv_GEN_APPL
ID = lv_ID
R3_NAME = lv_R3_NAME
R3_TYPE = lv_R3_TYPE
SYSNAME = lv_SYSNAME ).

Links to Related Class(s)

CL_PROXY...
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!