INBOUND_TEST SAP Method of class CL_PROXY_RUNTIME_COMMON_UTILS
Below is documentation, parameters and attributes of ABAP Method INBOUND_TEST within SAP class CL_PROXY_RUNTIME_COMMON_UTILS. 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_RUNTIME_COMMON_UTILS 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 INBOUND_TEST can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method INBOUND_TEST
.| Name | Type | Data Type | Description | Default Value |
| DONT_CATCH_APPL_FAULT | Importing | TYPE ABAP_BOOL | Boolean Variable (X=True, -=False, Space=Unknown) | |
| INTERFACE | Importing | TYPE PRX_R3NAME | Qualified Name | |
| METHOD | Importing | TYPE PRX_R3NAME | ||
| REQUEST_DATA | Importing | TYPE XSTRING | ||
| ERROR_DATA | Exporting | TYPE XSTRING | ||
| EXCEPTION_CLASS_NAME | Exporting | TYPE STRING | ||
| RESPONSE_DATA | Exporting | TYPE XSTRING |
Exceptions of Method INBOUND_TEST
CX_XMS_SYSTEM_ERROR - XI: System ErrorExample ABAP coding
DATA: lv_DONT_CATCH_APPL_FAULT TYPE ABAP_BOOL,
lv_ERROR_DATA TYPE XSTRING,
lv_EXCEPTION_CLASS_NAME TYPE STRING,
lv_INTERFACE TYPE PRX_R3NAME,
lv_METHOD TYPE PRX_R3NAME,
lv_REQUEST_DATA TYPE XSTRING,
lv_RESPONSE_DATA TYPE XSTRING,
lv_other TYPE c.
CALL METHOD CL_PROXY_RUNTIME_COMMON_UTILS=>INBOUND_TEST(
EXPORTING
DONT_CATCH_APPL_FAULT = lv_DONT_CATCH_APPL_FAULT
INTERFACE = lv_INTERFACE
METHOD = lv_METHOD
REQUEST_DATA = lv_REQUEST_DATA
IMPORTING
ERROR_DATA = lv_ERROR_DATA
EXCEPTION_CLASS_NAME = lv_EXCEPTION_CLASS_NAME
RESPONSE_DATA = lv_RESPONSE_DATA ).
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