CREATE_PROXIES SAP Method Create proxies for outbound processing









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

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


Parameters of Method CREATE_PROXIES

.

NameTypeData TypeDescriptionDefault Value
IS_COMPATIBILITY_OPTIONSImportingTYPE
BSSOA_ASYNCPRX_GRP_COMP
Compatibility options for Handling of Service Groups
IV_DEFAULT_SERVICE_GROUPImportingTYPE
XFELD
Retrieve service group through table BSSOA_APRX_GRP
IV_LOGICAL_RECEIVER_DET_STRUCImportingTYPE
ANY
Structure for Logical Receiver Determination
IV_PROXY_CLASSImportingTYPE
STRING
Name of (generated) proxy class
IV_RECIPIENT_BUSINESS_SYSTEMImportingTYPE
SLD_BSKEY
Key Name of Business System
IV_SERVICE_GROUPImportingTYPE
SRT_WSP_DT_OBJ_NAME
Service Group name (if not to be defaulted)
IV_SKIP_XI_PREROUTINGImportingTYPE
XFELD
Checkbox
ET_PROXY_INSTANCESExportingTYPE
BSSOA_SYNCPRX_INSTANCE_T
Table of created asycronous proxy instances



Exceptions of Method CREATE_PROXIES

CX_BS_SOA_EXCEPTION - Error message occurred

Example ABAP coding


DATA: lv_ET_PROXY_INSTANCES TYPE BSSOA_SYNCPRX_INSTANCE_T,
lv_IS_COMPATIBILITY_OPTIONS TYPE BSSOA_ASYNCPRX_GRP_COMP,
lv_IV_DEFAULT_SERVICE_GROUP TYPE XFELD,
lv_IV_LOGICAL_RECEIVER_DET_STRUC TYPE ANY,
lv_IV_PROXY_CLASS TYPE STRING,
lv_IV_RECIPIENT_BUSINESS_SYSTEM TYPE SLD_BSKEY,
lv_IV_SERVICE_GROUP TYPE SRT_WSP_DT_OBJ_NAME,
lv_IV_SKIP_XI_PREROUTING TYPE XFELD,
lv_other TYPE c.

CALL METHOD CL_BS_SOA_SYNCPRX_OUT=>CREATE_PROXIES(
EXPORTING
IS_COMPATIBILITY_OPTIONS = lv_IS_COMPATIBILITY_OPTIONS
IV_DEFAULT_SERVICE_GROUP = lv_IV_DEFAULT_SERVICE_GROUP
IV_LOGICAL_RECEIVER_DET_STRUC = lv_IV_LOGICAL_RECEIVER_DET_STRUC
IV_PROXY_CLASS = lv_IV_PROXY_CLASS
IV_RECIPIENT_BUSINESS_SYSTEM = lv_IV_RECIPIENT_BUSINESS_SYSTEM
IV_SERVICE_GROUP = lv_IV_SERVICE_GROUP
IV_SKIP_XI_PREROUTING = lv_IV_SKIP_XI_PREROUTING
IMPORTING
ET_PROXY_INSTANCES = lv_ET_PROXY_INSTANCES ).

Links to Related Class(s)

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