COMPARE_SEM_KEYS SAP Method Copy attribute values
Below is documentation, parameters and attributes of ABAP Method COMPARE_SEM_KEYS 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 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 /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 COMPARE_SEM_KEYS can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method COMPARE_SEM_KEYS
.| Name | Type | Data Type | Description | Default Value |
| IS_BO_COPY | Importing | TYPE /SCMTMS/CL_COCO_REQUEST=>TY_BO_COPY | ||
| IS_SRC_DATA | Importing | TYPE ANY | Source node data | |
| IS_TRG_DATA | Importing | TYPE /SCMTMS/CL_COCO_REQUEST=>TY_DATA | Target node data | |
| IT_SEM_KEYS | Importing | TYPE /SCMTMS/CL_COCO_REQUEST=>TT_SEM_KEY | ||
| EV_TRG_UPDATE | Exporting | TYPE FLAG | True = target node can be updated |
Exceptions of Method COMPARE_SEM_KEYS
This method does not have any exceptionsExample 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: lv_EV_TRG_UPDATE TYPE FLAG,
lv_IS_BO_COPY TYPE /SCMTMS/CL_COCO_REQUEST=>TY_BO_COPY,
lv_IS_SRC_DATA TYPE ANY,
lv_IS_TRG_DATA TYPE /SCMTMS/CL_COCO_REQUEST=>TY_DATA,
lv_IT_SEM_KEYS TYPE /SCMTMS/CL_COCO_REQUEST=>TT_SEM_KEY,
lv_other TYPE c.
CALL METHOD /SCMTMS/CL_COPY_CONTROL=>COMPARE_SEM_KEYS(
EXPORTING
IS_BO_COPY = lv_IS_BO_COPY
IS_SRC_DATA = lv_IS_SRC_DATA
IS_TRG_DATA = lv_IS_TRG_DATA
IT_SEM_KEYS = lv_IT_SEM_KEYS
IMPORTING
EV_TRG_UPDATE = lv_EV_TRG_UPDATE ).
Links to Related Class(s)
/SCMTMS/...Full list of available SAP object classes
Search for further information about these or an SAP related objects