PREPARE_DO_FOR_DATA_CRAWLER SAP Method prepare DO data for crawler and condense identical DO data
Below is documentation, parameters and attributes of ABAP Method PREPARE_DO_FOR_DATA_CRAWLER within SAP class /SCMTMS/CL_COND_OL. 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_COND_OL 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 PREPARE_DO_FOR_DATA_CRAWLER can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method PREPARE_DO_FOR_DATA_CRAWLER
.| Name | Type | Data Type | Description | Default Value |
| IT_COND_ROOT | Importing | TYPE /SCMTMS/T_CONDITION_HEADER_K | BO Condition Root Node (condition Header) | |
| IT_DOBO_LINK | Importing | TYPE /SCMTMS/T_COND_DO_DATA_K | Link between the Data Objects and the BO | |
| ES_COND_ROOT | Exporting | TYPE /SCMTMS/S_CONDITION_HEADER_K | BO Condition: Root Node (Condition header) | |
| ET_DC_PROF_ID | Exporting | TYPE /SCMTMS/T_DC_PROFILE_ID | Table of TM Data Crawler Profile IDs | |
| ET_DO_BO_LINK_DIRECT | Exporting | TYPE /SCMTMS/T_COND_DO_DATA_K | Data Object Data | |
| ET_TARGET_NODE_KEY | Exporting | TYPE /BOBF/T_FRW_KEY | Key Table | |
| EV_BO_KEY | Exporting | TYPE /BOBF/OBM_BO_KEY | Business Object | |
| ET_DC_PROF_REQ_STEPS | Exporting | TYPE /SCMTMS/IF_DATA_CRAWLER=>TT_PROFILE_REQ_STEP | Requested Steps of a Data Crawler Profile |
Exceptions of Method PREPARE_DO_FOR_DATA_CRAWLER
This method does not have any exceptionsExample ABAP coding
DATA: lv_ES_COND_ROOT TYPE /SCMTMS/S_CONDITION_HEADER_K,
lv_ET_DC_PROF_ID TYPE /SCMTMS/T_DC_PROFILE_ID,
lv_ET_DO_BO_LINK_DIRECT TYPE /SCMTMS/T_COND_DO_DATA_K,
lv_ET_TARGET_NODE_KEY TYPE /BOBF/T_FRW_KEY,
lv_EV_BO_KEY TYPE /BOBF/OBM_BO_KEY,
lv_IT_COND_ROOT TYPE /SCMTMS/T_CONDITION_HEADER_K,
lv_IT_DOBO_LINK TYPE /SCMTMS/T_COND_DO_DATA_K,
lv_ET_DC_PROF_REQ_STEPS TYPE /SCMTMS/IF_DATA_CRAWLER=>TT_PROFILE_REQ_STEP,
lv_other TYPE c.
CALL METHOD /SCMTMS/CL_COND_OL=>PREPARE_DO_FOR_DATA_CRAWLER(
EXPORTING
IT_COND_ROOT = lv_IT_COND_ROOT
IT_DOBO_LINK = lv_IT_DOBO_LINK
IMPORTING
ES_COND_ROOT = lv_ES_COND_ROOT
ET_DC_PROF_ID = lv_ET_DC_PROF_ID
ET_DO_BO_LINK_DIRECT = lv_ET_DO_BO_LINK_DIRECT
ET_TARGET_NODE_KEY = lv_ET_TARGET_NODE_KEY
EV_BO_KEY = lv_EV_BO_KEY
ET_DC_PROF_REQ_STEPS = lv_ET_DC_PROF_REQ_STEPS ).
Links to Related Class(s)
/SCMTMS/...Full list of available SAP object classes
Search for further information about these or an SAP related objects