COPY_TEXTS SAP Method Copy text collection for specific nodes
Below is documentation, parameters and attributes of ABAP Method COPY_TEXTS within SAP class /SCMTMS/CL_COPY_CONTROL. 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 /SCMTMS/CL_COPY_CONTROL 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 directlyThe following technical details of method COPY_TEXTS can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method COPY_TEXTS
.| Name | Type | Data Type | Description | Default Value |
| IO_READ | Importing | TYPE REF TO /BOBF/IF_FRW_READ | Interface to Read Data | |
| IT_EXCL_TXT | Importing | TYPE TT_TEXT_TYPE | Text types to be excluded | |
| IT_KEY_LINK | Importing | TYPE TT_KEY_LINK_EXT | Key pairs source - destination (host node) | |
| IV_MODIFY | Importing | TYPE BOOLEAN | Modify directly | |
| IV_PROCESS | Importing | TYPE /SCMTMS/COCO_PROCESS_ID | Copy Process | |
| EO_MSG | Exporting | TYPE REF TO /BOBF/IF_FRW_MESSAGE | Mesages | |
| ET_MOD | Exporting | TYPE /BOBF/T_FRW_MODIFICATION | Modifications |
Exceptions of Method COPY_TEXTS
This method does not have any exceptionsExample ABAP coding
DATA: lv_EO_MSG TYPE /BOBF/IF_FRW_MESSAGE,
lv_ET_MOD TYPE /BOBF/T_FRW_MODIFICATION,
lv_IO_READ TYPE /BOBF/IF_FRW_READ,
lv_IT_EXCL_TXT TYPE TT_TEXT_TYPE,
lv_IT_KEY_LINK TYPE TT_KEY_LINK_EXT,
lv_IV_MODIFY TYPE BOOLEAN,
lv_IV_PROCESS TYPE /SCMTMS/COCO_PROCESS_ID,
lv_other TYPE c.
CALL METHOD /SCMTMS/CL_COPY_CONTROL=>COPY_TEXTS(
EXPORTING
IO_READ = lv_IO_READ
IT_EXCL_TXT = lv_IT_EXCL_TXT
IT_KEY_LINK = lv_IT_KEY_LINK
IV_MODIFY = lv_IV_MODIFY
IV_PROCESS = lv_IV_PROCESS
IMPORTING
EO_MSG = lv_EO_MSG
ET_MOD = lv_ET_MOD ).
Links to Related Class(s)
/SCMTMS/...Full list of available SAP object classes
Search for further information about these or an SAP related objects