CALL_OUTBOUND_PROXY_ASYNC SAP Method Calls asynchronous outbound proxy (XI or P2P)









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


Method Type - Instance

This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.

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

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


Parameters of Method CALL_OUTBOUND_PROXY_ASYNC

.

NameTypeData TypeDescriptionDefault Value
X_BO_NAMEImportingTYPE
E_SE_BO_NAME
Object Type (as defined for FEH)
X_CORRELATION_IDImportingTYPE
BS_SOA_RSPNSRCVR_COREL_ID
ResponseReceiverCorrelationID
X_DEFAULT_SERVICE_GROUPImportingTYPE
XFELD
Retrieve service group through table BSSOA_APRX_GRP
X_EXTENDED_XMLImportingTYPE
XFELD
Allow extendend XML handling
X_LOGICAL_RECEIVER_DET_STRUCImportingTYPE
ANY
Structure for Logical Receiver Determination
X_METHOD_NAMEImportingTYPE
SEOCMPNAME
Name of method of (generated) proxy class
X_MULTIPLE_RECEIVERS_ALLOWEDImportingTYPE
XFELD
Flag if multiple receivers per message are allowed
X_OUTPUTImportingTYPE
ANY
Proxy outbound structure
X_PROXY_CLASSImportingTYPE
STRING
Name of (generated) proxy class
X_SERVICE_GROUPImportingTYPE
SRT_WSP_DT_OBJ_NAME
Service Group name (if not to be defaulted)
Y_MSGID_OUTBOUNDExportingTYPE
E_SE_MSGID
Message ID



Exceptions of Method CALL_OUTBOUND_PROXY_ASYNC

CX_ISU_SE_IMPL_CRITICAL_ERROR - Critical exception of the Utilities service implementation

Example ABAP coding


DATA: lo_class TYPE REF TO IF_ISU_SE_IMPL_P2P.
DATA: lv_X_BO_NAME TYPE E_SE_BO_NAME,
lv_X_CORRELATION_ID TYPE BS_SOA_RSPNSRCVR_COREL_ID,
lv_X_DEFAULT_SERVICE_GROUP TYPE XFELD,
lv_X_EXTENDED_XML TYPE XFELD,
lv_X_LOGICAL_RECEIVER_DET_STRUC TYPE ANY,
lv_X_METHOD_NAME TYPE SEOCMPNAME,
lv_X_MULTIPLE_RECEIVERS_ALLOWED TYPE XFELD,
lv_X_OUTPUT TYPE ANY,
lv_X_PROXY_CLASS TYPE STRING,
lv_X_SERVICE_GROUP TYPE SRT_WSP_DT_OBJ_NAME,
lv_Y_MSGID_OUTBOUND TYPE E_SE_MSGID,
lv_other TYPE c.

CALL METHOD lo_class=>CALL_OUTBOUND_PROXY_ASYNC(
EXPORTING
X_BO_NAME = lv_X_BO_NAME
X_CORRELATION_ID = lv_X_CORRELATION_ID
X_DEFAULT_SERVICE_GROUP = lv_X_DEFAULT_SERVICE_GROUP
X_EXTENDED_XML = lv_X_EXTENDED_XML
X_LOGICAL_RECEIVER_DET_STRUC = lv_X_LOGICAL_RECEIVER_DET_STRUC
X_METHOD_NAME = lv_X_METHOD_NAME
X_MULTIPLE_RECEIVERS_ALLOWED = lv_X_MULTIPLE_RECEIVERS_ALLOWED
X_OUTPUT = lv_X_OUTPUT
X_PROXY_CLASS = lv_X_PROXY_CLASS
X_SERVICE_GROUP = lv_X_SERVICE_GROUP
IMPORTING
Y_MSGID_OUTBOUND = lv_Y_MSGID_OUTBOUND ).

Links to Related Class(s)

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