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 directlyThe 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
.| Name | Type | Data Type | Description | Default Value |
| DEVCLASS | Importing | TYPE CSEQUENCE | ||
| GEN_APPL | Importing | TYPE SPRX_HDR-GEN_APPL | ||
| ID | Importing | TYPE PRX_ID | Proxy Generation: Unique ID of a Proxy Object | |
| R3_NAME | Importing | TYPE CSEQUENCE | ||
| R3_TYPE | Importing | TYPE SPRX_HDR-OBJECT | ||
| SYSNAME | Importing | TYPE SRCSYSTEM | Name of an SAP System in the (active) transp. configuration | |
| RVAL | Returning | TYPE ABAP_BOOL |
Exceptions of Method CHECK_REMOTE_OBJECT
This method does not have any exceptionsExample 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