CREATE_FROM_PROXY SAP Method of class CL_PROXY_ABAP2WSDL









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

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


Parameters of Method CREATE_FROM_PROXY

.

NameTypeData TypeDescriptionDefault Value
KEEP_UNUSED_REFSImportingTYPE
PRX_BOOLEAN
ABAP Proxies: Boolean Value ('X' = True, Space = False)
PROXYImportingTYPE REF TO
IF_PROXY_DATA
Proxy Generation: Proxy Type with Referenced Proxy Types
CHECK_LWB_SWITCHImportingTYPE REF TO
IF_PXN_CHECK_LWB_SWITCH
Check Lightweight Business Switch
CHECK_SBR_FEATUREImportingTYPE REF TO
IF_PXN_CHECK_SBR_FEATURE
SHOW_ABAP_PROPSImportingTYPE
ABAP_BOOL
SHOW_ABAP_PROP_IDImportingTYPE
ABAP_BOOL
SHOW_EXTENSIBILITY_AS_ANYImportingTYPE
ABAP_BOOL
RVALReturningTYPE REF TO
CL_PROXY_ABAP2WSDL
Proxy Generation: Generate WSDL/XML from Proxy Metadata



Exceptions of Method CREATE_FROM_PROXY

This method does not have any exceptions

Example ABAP coding


DATA: lv_KEEP_UNUSED_REFS TYPE PRX_BOOLEAN,
lv_PROXY TYPE IF_PROXY_DATA,
lv_RVAL TYPE CL_PROXY_ABAP2WSDL,
lv_CHECK_LWB_SWITCH TYPE IF_PXN_CHECK_LWB_SWITCH,
lv_CHECK_SBR_FEATURE TYPE IF_PXN_CHECK_SBR_FEATURE,
lv_SHOW_ABAP_PROPS TYPE ABAP_BOOL,
lv_SHOW_ABAP_PROP_ID TYPE ABAP_BOOL,
lv_SHOW_EXTENSIBILITY_AS_ANY TYPE ABAP_BOOL,
lv_other TYPE c.

CALL METHOD CL_PROXY_ABAP2WSDL=>CREATE_FROM_PROXY(
EXPORTING
KEEP_UNUSED_REFS = lv_KEEP_UNUSED_REFS
PROXY = lv_PROXY
CHECK_LWB_SWITCH = lv_CHECK_LWB_SWITCH
CHECK_SBR_FEATURE = lv_CHECK_SBR_FEATURE
SHOW_ABAP_PROPS = lv_SHOW_ABAP_PROPS
SHOW_ABAP_PROP_ID = lv_SHOW_ABAP_PROP_ID
SHOW_EXTENSIBILITY_AS_ANY = lv_SHOW_EXTENSIBILITY_AS_ANY
RECEIVING
RVAL = lv_RVAL )



"Alternate coding for Method Call with returning parameter
lv_RVAL = CL_PROXY_ABAP2WSDL=>CREATE_FROM_PROXY(
EXPORTING
KEEP_UNUSED_REFS = lv_KEEP_UNUSED_REFS
PROXY = lv_PROXY
CHECK_LWB_SWITCH = lv_CHECK_LWB_SWITCH
CHECK_SBR_FEATURE = lv_CHECK_SBR_FEATURE
SHOW_ABAP_PROPS = lv_SHOW_ABAP_PROPS
SHOW_ABAP_PROP_ID = lv_SHOW_ABAP_PROP_ID
SHOW_EXTENSIBILITY_AS_ANY = lv_SHOW_EXTENSIBILITY_AS_ANY ).

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!