COPY_BSP_PAGE SAP Method of class CL_BSP_WD_O2_SERVICES
Below is documentation, parameters and attributes of ABAP Method COPY_BSP_PAGE within SAP class CL_BSP_WD_O2_SERVICES. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.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_BSP_WD_O2_SERVICES 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 COPY_BSP_PAGE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method COPY_BSP_PAGE
.| Name | Type | Data Type | Description | Default Value |
| IS_SRC_PAGE_KEY | Importing | TYPE O2PAGKEY | Key Structure for Name of Oxygen Page | |
| IV_DESCR | Importing | TYPE O2DESCR | Short Description | |
| IV_OVERWRITING | Importing | TYPE ABAP_BOOL | Overwrite Existing Page if Necessary | |
| IV_TARGET_APPL | Importing | TYPE O2APPLNAME | Name of BSP Application | |
| IV_TARGET_PAGE_NAME | Importing | TYPE O2PAGEEXT | Name of a BSP Page/Controller (Upper and Lower Case) | |
| CV_TRANSPORT_REQUEST | Changing | TYPE TRKORR | Order/Task |
Exceptions of Method COPY_BSP_PAGE
FAILED -Example ABAP coding
This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.DATA: lo_class TYPE REF TO CL_BSP_WD_O2_SERVICES.
DATA: lv_CV_TRANSPORT_REQUEST TYPE TRKORR,
lv_IS_SRC_PAGE_KEY TYPE O2PAGKEY,
lv_IV_DESCR TYPE O2DESCR,
lv_IV_OVERWRITING TYPE ABAP_BOOL,
lv_IV_TARGET_APPL TYPE O2APPLNAME,
lv_IV_TARGET_PAGE_NAME TYPE O2PAGEEXT,
lv_other TYPE c.
CALL METHOD lo_class=>COPY_BSP_PAGE(
EXPORTING
IS_SRC_PAGE_KEY = lv_IS_SRC_PAGE_KEY
IV_DESCR = lv_IV_DESCR
IV_OVERWRITING = lv_IV_OVERWRITING
IV_TARGET_APPL = lv_IV_TARGET_APPL
IV_TARGET_PAGE_NAME = lv_IV_TARGET_PAGE_NAME
CHANGING
CV_TRANSPORT_REQUEST = lv_CV_TRANSPORT_REQUEST ).
Links to Related Class(s)
CL_BSP_W...Full list of available SAP object classes
Search for further information about these or an SAP related objects