SAP /BOFU/IF_CDO_CREATION OO Class - BO Application Call back: Is CDO active for given docs?
/BOFU/IF_CDO_CREATION is a standard SAP object class available within R/3 SAP systems depending on your version and release level. You can view/maintain the class details by entering its name into the relevant SAP transactions such as SE24, SE80 or even SE84. Below is the documentation available for class /BOFU/IF_CDO_CREATION including details of:
- Interface class implementations
- Inheritance details
- Methods defined within class ( including link to full details )
- Attributes ( including initial values )
- Class Events
Method list of /BOFU/IF_CDO_CREATION SAP class
A method is a coding block that performs a certain procedure (i.e. ABAP functionality) on an object within the overall SAP class. In simple terms if the object is an SAP database table a method could be the procedure to add a record or to delete a record. If you are new to OO in many respects, the implementation of a method is similar to a function module and can be called in a very similar way using CALL METHOD.
Instead of "CALL FUNCTION", Methods are referenced using the following syntax: CALL METHOD =>methodname EXPORTING/IMPORTING...
| Method Name | Description | Visability |
| DO_ADOPT_EXTERNAL_IDS | DO Nodes: Adopt External IDs: Call on Main BO | Public |
| CALL METHOD /bofu/if_cdo_creation=>DO_ADOPT_EXTERNAL_IDS...more details | ||
| GET_BO_MANAGED_CHG_HISTORY | Get change history from other sources | Public |
| CALL METHOD /bofu/if_cdo_creation=>GET_BO_MANAGED_CHG_HISTORY...more details | ||
| GET_EXTERNAL_IDS | Get External IDs: Call on any kind of BO | Public |
| CALL METHOD /bofu/if_cdo_creation=>GET_EXTERNAL_IDS...more details | ||
| GET_FILTERED_KEYS | Filter keys:Keep only those to be written in Change Document | Public |
| CALL METHOD /bofu/if_cdo_creation=>GET_FILTERED_KEYS...more details | ||
| IS_CDO_CREATION_ACTIVE | Should change document be created for given BO instance? | Public |
| CALL METHOD /bofu/if_cdo_creation=>IS_CDO_CREATION_ACTIVE...more details | ||
| IS_CDO_CREATION_SUPPORTED | Supports Change Document Creation? (some DOs can answer no) | Public |
| CALL METHOD /bofu/if_cdo_creation=>IS_CDO_CREATION_SUPPORTED...more details | ||
|
| ||
| MAP_NODE_DATA_TO_DB_TABLE | Map Node Data to DB Table | Public |
| CALL METHOD /bofu/if_cdo_creation=>MAP_NODE_DATA_TO_DB_TABLE...more details | ||
/BOFU/IF_CDO_CREATION attributes
List of attributes within class CL_ABAP_CHAR_UTILITIES. These can be referenced using the following syntax CL_ABAP_CHAR_UTILITIES=>. Although depending on where you are inserting the ABAP code you do need to check if the attribute is public or private.
| Name | Level | Description | Initial Value | Type | Visability |
| SC_CHANGE_INDICATOR | Constant | Change Indicators | LIKE | Public | |
| SC_KEY_EXTID_MAP_STRUCT_KEYS | Constant | Key to ExtID Map structure | '/BOFU/S_CD_EXTID_KEYS' | LIKE TABNAME | Public |
/BOFU/IF_CDO_CREATION types
TS_DO_REPRESENTATION_NODES -TS_EXTERNAL_IDS - External ID of a KEY
TS_KEY_EXTID_MAP_CDO - Technically same as /BOFU/S_CD_EXTID used in change doc obj
TS_KEY_EXTID_MAP_CDO_KEYS -
TS_KEY_EXTID_MAP_CDO_NON_KEYS -
TS_KEY_EXT_ID_MAP -
TT_EXTERNAL_IDS - External IDs for given KEYs
TT_KEY_EXTID_MAP_CDO - Table of Ext ID map
TT_KEY_EXT_ID_MAP -
TV_EXTERNAL_ID - New contents of changed field
Links to Related Class(s)
/BOFU/IF...Full list of available SAP object classes
Search for further information about these or an SAP related objects