INBOUND_TEST SAP Method of class CL_PROXY_ADAPTER_TEST









Below is documentation, parameters and attributes of ABAP Method INBOUND_TEST within SAP class CL_PROXY_ADAPTER_TEST. 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_ADAPTER_TEST 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 INBOUND_TEST can also be found below:

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


Parameters of Method INBOUND_TEST

.

NameTypeData TypeDescriptionDefault Value
DONT_CATCH_APPL_FAULTImportingTYPE
ABAP_BOOL
boolsche Variable (X=true, -=false, space=unknown)
INTERFACEImportingTYPE
PRX_R3NAME
Qualified Name
METHODImportingTYPE
PRX_R3NAME
REQUEST_DATAImportingTYPE
XSTRING
RUNTIMEImportingTYPE
STRING
ERROR_DATAExportingTYPE
XSTRING
EXCEPTION_CLASS_NAMEExportingTYPE
STRING
RESPONSE_DATAExportingTYPE
XSTRING
RUNTIME_DESERIALIZEExportingTYPE
I
RUNTIME_EXECUTEExportingTYPE
I
RUNTIME_SERIALIZEExportingTYPE
I
INBOUND_ADAPTERChangingTYPE REF TO
IF_PROXY_INBOUND_ADAPTER
Generischer Inbound-Proxy



Exceptions of Method INBOUND_TEST

CX_XMS_SYSTEM_ERROR - XI: System Error

Example ABAP coding


DATA: lv_DONT_CATCH_APPL_FAULT TYPE ABAP_BOOL,
lv_ERROR_DATA TYPE XSTRING,
lv_EXCEPTION_CLASS_NAME TYPE STRING,
lv_INBOUND_ADAPTER TYPE IF_PROXY_INBOUND_ADAPTER,
lv_INTERFACE TYPE PRX_R3NAME,
lv_METHOD TYPE PRX_R3NAME,
lv_REQUEST_DATA TYPE XSTRING,
lv_RESPONSE_DATA TYPE XSTRING,
lv_RUNTIME TYPE STRING,
lv_RUNTIME_DESERIALIZE TYPE I,
lv_RUNTIME_EXECUTE TYPE I,
lv_RUNTIME_SERIALIZE TYPE I,
lv_other TYPE c.

CALL METHOD CL_PROXY_ADAPTER_TEST=>INBOUND_TEST(
EXPORTING
DONT_CATCH_APPL_FAULT = lv_DONT_CATCH_APPL_FAULT
INTERFACE = lv_INTERFACE
METHOD = lv_METHOD
REQUEST_DATA = lv_REQUEST_DATA
RUNTIME = lv_RUNTIME
IMPORTING
ERROR_DATA = lv_ERROR_DATA
EXCEPTION_CLASS_NAME = lv_EXCEPTION_CLASS_NAME
RESPONSE_DATA = lv_RESPONSE_DATA
RUNTIME_DESERIALIZE = lv_RUNTIME_DESERIALIZE
RUNTIME_EXECUTE = lv_RUNTIME_EXECUTE
RUNTIME_SERIALIZE = lv_RUNTIME_SERIALIZE
CHANGING
INBOUND_ADAPTER = lv_INBOUND_ADAPTER ).

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!