CREATE_PROXY_REF SAP Method creates a proxy instance
Below is documentation, parameters and attributes of ABAP Method CREATE_PROXY_REF within SAP class CL_PROXY_UIX_PLGN_BASE. 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_UIX_PLGN_BASE 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 CREATE_PROXY_REF can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CREATE_PROXY_REF
.| Name | Type | Data Type | Description | Default Value |
| IR_GENERATION_PARAMS | Importing | TYPE REF TO CL_PROXY_GENERATION_PARAMS | Parameter to generate a proxy | |
| IV_OBJECT_KEY | Importing | TYPE SEU_OBJKEY | ||
| IV_OBJECT_TYP | Importing | TYPE SEU_OBJTYP | WB Request: Type of Object of Development Environment | |
| IV_OPERATION | Importing | TYPE SEU_ACTION | WB Request: Operation in the Development Environment |
Exceptions of Method CREATE_PROXY_REF
CX_ESD_PERMISSION_FAILURE - No AuthorizationExample ABAP coding
DATA: lo_class TYPE REF TO CL_PROXY_UIX_PLGN_BASE.
DATA: lv_IR_GENERATION_PARAMS TYPE CL_PROXY_GENERATION_PARAMS,
lv_IV_OBJECT_KEY TYPE SEU_OBJKEY,
lv_IV_OBJECT_TYP TYPE SEU_OBJTYP,
lv_IV_OPERATION TYPE SEU_ACTION,
lv_other TYPE c.
CALL METHOD lo_class=>CREATE_PROXY_REF(
EXPORTING
IR_GENERATION_PARAMS = lv_IR_GENERATION_PARAMS
IV_OBJECT_KEY = lv_IV_OBJECT_KEY
IV_OBJECT_TYP = lv_IV_OBJECT_TYP
IV_OPERATION = lv_IV_OPERATION ).
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