FILL_SPECIFICS SAP Method of class /SCMTMS/CL_COPY_CONTROL









Below is documentation, parameters and attributes of ABAP Method FILL_SPECIFICS 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 directly

The following technical details of method FILL_SPECIFICS can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method FILL_SPECIFICS

.

NameTypeData TypeDescriptionDefault Value
IS_BO_COPYImportingTYPE
/SCMTMS/CL_COCO_REQUEST=>TY_BO_COPY
IS_DC_DATAImportingTYPE
/SCMTMS/CL_DATA_CRAWLER=>TY_DATA
Internal data result table
IS_SRC_NODEImportingTYPE
/BOBF/S_CONFRO_NODE
Configuration: Node
IS_SRC_NODE_DATAImportingTYPE
ANY
IT_ATTRIBUTE_FILTERImportingTYPE
/SCMTMS/CL_COCO_REQUEST=>TT_ATTRIBUTE_FILTER
IT_ATTRIBUTE_VALUEImportingTYPE
/SCMTMS/CL_COCO_REQUEST=>TT_ATTRIBUTE_VALUE
IT_ATTR_MAPImportingTYPE
/SCMTMS/CL_COCO_REQUEST=>TT_ATTR_MAP
IT_DATATImportingTYPE
/SCMTMS/CL_COCO_REQUEST=>TT_DATA
target object
IT_KEYSImportingTYPE
/SCMTMS/CL_COCO_REQUEST=>TT_KEYS
IT_NODE_ATTRImportingTYPE
/BOBF/T_FRW_NAME
List of Names (e.g. Fieldnames)
IT_NODE_MAPImportingTYPE
/SCMTMS/CL_COCO_REQUEST=>TT_NODE_MAP
IT_NODE_SRC_TARGET_KEYImportingTYPE
/SCMTMS/CL_COCO_REQUEST=>TT_KEY_LINK_EXT
IT_SEM_KEYSImportingTYPE
/SCMTMS/CL_COCO_REQUEST=>TT_SEM_KEY
IV_SRC_PARENT_NODEImportingTYPE
/BOBF/OBM_NODE_KEY
Node
ET_KEY_LINK_EXTExportingTYPE
/SCMTMS/CL_COCO_REQUEST=>TT_KEY_LINK_EXT
CT_FAILED_TRG_KEYChangingTYPE
/BOBF/T_FRW_KEY
Failed target key table
CT_KEY_LINKChangingTYPE
/BOBF/T_FRW_KEY_LINK
Key Link
CT_KEY_LINK_ADDRChangingTYPE
/SCMTMS/CL_COCO_REQUEST=>TT_KEY_LINK_ADDR
CT_MODChangingTYPE
/BOBF/T_FRW_MODIFICATION
Change



Exceptions of Method FILL_SPECIFICS

This method does not have any exceptions

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: lv_CT_FAILED_TRG_KEY TYPE /BOBF/T_FRW_KEY,
lv_CT_KEY_LINK TYPE /BOBF/T_FRW_KEY_LINK,
lv_CT_KEY_LINK_ADDR TYPE /SCMTMS/CL_COCO_REQUEST=>TT_KEY_LINK_ADDR,
lv_CT_MOD TYPE /BOBF/T_FRW_MODIFICATION,
lv_ET_KEY_LINK_EXT TYPE /SCMTMS/CL_COCO_REQUEST=>TT_KEY_LINK_EXT,
lv_IS_BO_COPY TYPE /SCMTMS/CL_COCO_REQUEST=>TY_BO_COPY,
lv_IS_DC_DATA TYPE /SCMTMS/CL_DATA_CRAWLER=>TY_DATA,
lv_IS_SRC_NODE TYPE /BOBF/S_CONFRO_NODE,
lv_IS_SRC_NODE_DATA TYPE ANY,
lv_IT_ATTRIBUTE_FILTER TYPE /SCMTMS/CL_COCO_REQUEST=>TT_ATTRIBUTE_FILTER,
lv_IT_ATTRIBUTE_VALUE TYPE /SCMTMS/CL_COCO_REQUEST=>TT_ATTRIBUTE_VALUE,
lv_IT_ATTR_MAP TYPE /SCMTMS/CL_COCO_REQUEST=>TT_ATTR_MAP,
lv_IT_DATAT TYPE /SCMTMS/CL_COCO_REQUEST=>TT_DATA,
lv_IT_KEYS TYPE /SCMTMS/CL_COCO_REQUEST=>TT_KEYS,
lv_IT_NODE_ATTR TYPE /BOBF/T_FRW_NAME,
lv_IT_NODE_MAP TYPE /SCMTMS/CL_COCO_REQUEST=>TT_NODE_MAP,
lv_IT_NODE_SRC_TARGET_KEY TYPE /SCMTMS/CL_COCO_REQUEST=>TT_KEY_LINK_EXT,
lv_IT_SEM_KEYS TYPE /SCMTMS/CL_COCO_REQUEST=>TT_SEM_KEY,
lv_IV_SRC_PARENT_NODE TYPE /BOBF/OBM_NODE_KEY,
lv_other TYPE c.

CALL METHOD /SCMTMS/CL_COPY_CONTROL=>FILL_SPECIFICS(
EXPORTING
IS_BO_COPY = lv_IS_BO_COPY
IS_DC_DATA = lv_IS_DC_DATA
IS_SRC_NODE = lv_IS_SRC_NODE
IS_SRC_NODE_DATA = lv_IS_SRC_NODE_DATA
IT_ATTRIBUTE_FILTER = lv_IT_ATTRIBUTE_FILTER
IT_ATTRIBUTE_VALUE = lv_IT_ATTRIBUTE_VALUE
IT_ATTR_MAP = lv_IT_ATTR_MAP
IT_DATAT = lv_IT_DATAT
IT_KEYS = lv_IT_KEYS
IT_NODE_ATTR = lv_IT_NODE_ATTR
IT_NODE_MAP = lv_IT_NODE_MAP
IT_NODE_SRC_TARGET_KEY = lv_IT_NODE_SRC_TARGET_KEY
IT_SEM_KEYS = lv_IT_SEM_KEYS
IV_SRC_PARENT_NODE = lv_IV_SRC_PARENT_NODE
IMPORTING
ET_KEY_LINK_EXT = lv_ET_KEY_LINK_EXT
CHANGING
CT_FAILED_TRG_KEY = lv_CT_FAILED_TRG_KEY
CT_KEY_LINK = lv_CT_KEY_LINK
CT_KEY_LINK_ADDR = lv_CT_KEY_LINK_ADDR
CT_MOD = lv_CT_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



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!