GET_OUTBOUND_RESPONSE_PAYLOAD SAP Method of class CL_PROXY_ADAPTER_TEST









Below is documentation, parameters and attributes of ABAP Method GET_OUTBOUND_RESPONSE_PAYLOAD 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 GET_OUTBOUND_RESPONSE_PAYLOAD can also be found below:

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


Parameters of Method GET_OUTBOUND_RESPONSE_PAYLOAD

.

NameTypeData TypeDescriptionDefault Value
CLASS_NAMEImportingTYPE
SEOCLNAME
IFR Interface
INIT_DATAImportingTYPE
PRX_BOOLEAN
Boolean Variable (X=True, -=False, Space=Unknown)
METHOD_NAMEImportingTYPE
SEOCLNAME
Class Name
TEST_ENVIRONMENTImportingTYPE REF TO
IF_PROXY_TEST_DATA_FILL
Proxy Generation and Runtime Test
PAYLOADReturningTYPE
XSTRING



Exceptions of Method GET_OUTBOUND_RESPONSE_PAYLOAD

CX_XMS_SYSTEM_ERROR - XI: System Error

Example ABAP coding


DATA: lv_CLASS_NAME TYPE SEOCLNAME,
lv_INIT_DATA TYPE PRX_BOOLEAN,
lv_METHOD_NAME TYPE SEOCLNAME,
lv_PAYLOAD TYPE XSTRING,
lv_TEST_ENVIRONMENT TYPE IF_PROXY_TEST_DATA_FILL,
lv_other TYPE c.

CALL METHOD CL_PROXY_ADAPTER_TEST=>GET_OUTBOUND_RESPONSE_PAYLOAD(
EXPORTING
CLASS_NAME = lv_CLASS_NAME
INIT_DATA = lv_INIT_DATA
METHOD_NAME = lv_METHOD_NAME
TEST_ENVIRONMENT = lv_TEST_ENVIRONMENT
RECEIVING
PAYLOAD = lv_PAYLOAD )



"Alternate coding for Method Call with returning parameter
lv_PAYLOAD = CL_PROXY_ADAPTER_TEST=>GET_OUTBOUND_RESPONSE_PAYLOAD(
EXPORTING
CLASS_NAME = lv_CLASS_NAME
INIT_DATA = lv_INIT_DATA
METHOD_NAME = lv_METHOD_NAME
TEST_ENVIRONMENT = lv_TEST_ENVIRONMENT ).

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!