SET_WIZARD_STEPS_COPY_DT SAP Method provide steps for a new data type
Below is documentation, parameters and attributes of ABAP Method SET_WIZARD_STEPS_COPY_DT within SAP class CL_PROXY_UIX_AUNIT. 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_AUNIT 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 SET_WIZARD_STEPS_COPY_DT can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method SET_WIZARD_STEPS_COPY_DT
.| Name | Type | Data Type | Description | Default Value |
| NAME | Importing | TYPE PRX_IFRNAM | Proxy Generation: External Name | |
| NAMESPACE | Importing | TYPE PRX_NSPCE | Proxy Generation: External Namespace | |
| OKCODE_END | Importing | TYPE SYUCOMM | Function Code |
Exceptions of Method SET_WIZARD_STEPS_COPY_DT
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO CL_PROXY_UIX_AUNIT.
DATA: lv_NAME TYPE PRX_IFRNAM,
lv_NAMESPACE TYPE PRX_NSPCE,
lv_OKCODE_END TYPE SYUCOMM,
lv_other TYPE c.
CALL METHOD lo_class=>SET_WIZARD_STEPS_COPY_DT(
EXPORTING
NAME = lv_NAME
NAMESPACE = lv_NAMESPACE
OKCODE_END = lv_OKCODE_END ).
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