SAP /BCV/CL_FND_TRANSLATE OO Class - Translation class for data migration
/BCV/CL_FND_TRANSLATE 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 /BCV/CL_FND_TRANSLATE 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 /BCV/CL_FND_TRANSLATE 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 |
| ADD_MESSAGE | Add message to log | Private |
| CALL METHOD /bcv/cl_fnd_translate=>ADD_MESSAGE...more details | ||
| CHECK_BADI | Check for non-standard BAdI implementations | Public |
| CALL METHOD /bcv/cl_fnd_translate=>CHECK_BADI...more details | ||
| CHECK_BAPI | Check for non-standard BAPI DSPs | Public |
| CALL METHOD /bcv/cl_fnd_translate=>CHECK_BAPI...more details | ||
| CHECK_COMPONENTS | Check that two given components have the same type | Private |
| CALL METHOD /bcv/cl_fnd_translate=>CHECK_COMPONENTS...more details | ||
| CHECK_DSP | Check for non-standard DSPs | Public |
| CALL METHOD /bcv/cl_fnd_translate=>CHECK_DSP...more details | ||
| CHECK_STRUCTURES_BY_NAME | Check that given structures are consistent by name | Private |
| CALL METHOD /bcv/cl_fnd_translate=>CHECK_STRUCTURES_BY_NAME...more details | ||
|
| ||
| CHECK_STRUCTURES_BY_TYPE | Check that given structures are consistent by type | Private |
| CALL METHOD /bcv/cl_fnd_translate=>CHECK_STRUCTURES_BY_TYPE...more details | ||
| CONSTRUCTOR | Constructor | Public |
| CALL METHOD /bcv/cl_fnd_translate=>CONSTRUCTOR...more details | ||
| COPY_BY_NAME | Copy fields with same name from one structure to another | Private |
| CALL METHOD /bcv/cl_fnd_translate=>COPY_BY_NAME...more details | ||
| COPY_BY_TYPE | Copy fields with same type from one structure to another | Private |
| CALL METHOD /bcv/cl_fnd_translate=>COPY_BY_TYPE...more details | ||
| COPY_DATA | Copy data from PCV tables into BCV tables | Public |
| CALL METHOD /bcv/cl_fnd_translate=>COPY_DATA...more details | ||
| COPY_FIELD | Copy values from one field to another | Private |
| CALL METHOD /bcv/cl_fnd_translate=>COPY_FIELD...more details | ||
| GET_FIELD | Translate table field name | Private |
| CALL METHOD /bcv/cl_fnd_translate=>GET_FIELD...more details | ||
| GET_FIELD_NAME | Determines a component name of a given structure | Private |
| CALL METHOD /bcv/cl_fnd_translate=>GET_FIELD_NAME...more details | ||
| GET_TABLE | Translate table name | Private |
| CALL METHOD /bcv/cl_fnd_translate=>GET_TABLE...more details | ||
| GET_TABLE_CLASS | Get class for table translation | Private |
| CALL METHOD /bcv/cl_fnd_translate=>GET_TABLE_CLASS...more details | ||
| GET_TABLE_DATA | Get table data for a given table from buffer | Public |
| CALL METHOD /bcv/cl_fnd_translate=>GET_TABLE_DATA...more details | ||
| GET_TABLE_LINE_CLASS | Get class for table line translation | Private |
| CALL METHOD /bcv/cl_fnd_translate=>GET_TABLE_LINE_CLASS...more details | ||
| GET_TABLE_NAME | Determine table name | Private |
| CALL METHOD /bcv/cl_fnd_translate=>GET_TABLE_NAME...more details | ||
| GET_TRANSLATION_DATA | Get translation data from database | Private |
| CALL METHOD /bcv/cl_fnd_translate=>GET_TRANSLATION_DATA...more details | ||
| GET_VALUE | Translate table field value | Private |
| CALL METHOD /bcv/cl_fnd_translate=>GET_VALUE...more details | ||
| SET_TABLE_DATA | Set table data of a given table into buffer for later update | Public |
| CALL METHOD /bcv/cl_fnd_translate=>SET_TABLE_DATA...more details | ||
| SORT_TABLE | Sort table names depending on foreign key relationships | Private |
| CALL METHOD /bcv/cl_fnd_translate=>SORT_TABLE...more details | ||
| UPDATE_TABLE | Update database table with given data | Private |
| CALL METHOD /bcv/cl_fnd_translate=>UPDATE_TABLE...more details | ||
/BCV/CL_FND_TRANSLATE 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 |
| GC_DEL_CLASS_A | Constant | Delivery class A: Application table (master and trans. data) | 'A' | LIKE CONTFLAG | Private |
| GC_DEL_CLASS_S | Constant | Delivery class S: System table, maint. only by SAP, change = | 'S' | LIKE CONTFLAG | Private |
| GC_DEL_CLASS_W | Constant | Delivery class W: System table, contents transportable via s | 'W' | LIKE CONTFLAG | Private |
| GC_MODE_INS | Constant | Migration mode: Insert (update only new date) | 'I' | LIKE /BCV/FND_MIGRATION_MODE | Public |
| GC_MODE_MOD | Constant | Migration mode: Modify (update also existing data) | 'M' | LIKE /BCV/FND_MIGRATION_MODE | Public |
| GC_MODE_SIM | Constant | Migration mode: Simulate update | 'S' | LIKE /BCV/FND_MIGRATION_MODE | Public |
| GC_NAMESPACE_NEW | Constant | BCV namespace | '/BCV/' | LIKE TABNAME16 | Private |
| GC_NAMESPACE_OLD | Constant | PCV namespace | '/PLMPCV/' | LIKE TABNAME16 | Private |
| GC_STATUS_ACTIVE | Constant | Activation Status of a Repository Object | 'A' | LIKE AS4LOCAL | Private |
| GC_TRANSPARENT_TABLE | Constant | Table category | 'TRANSP' | LIKE TABCLASS | Private |
| GO_LOG | Static Attribute | Log | LIKE /BCV/CL_FND_LOG | Private | |
| GT_TABLE_DATA | Static Attribute | Buffer for translated table data | LIKE TYT_TABLE_DATA | Private | |
| GT_TRANSLATE | Static Attribute | Translate PCV to BCV | LIKE /BCV/T_FND_TRANSLATE | Private | |
| GV_MODE | Static Attribute | Migration mode | LIKE /BCV/FND_MIGRATION_MODE | Private | |
| GV_STATISTICS | Static Attribute | Migrate statistic data | LIKE /BCV/FND_STATISTICS_IND | Private |
/BCV/CL_FND_TRANSLATE types
TYS_TABLE_DATA -TYT_TABLE_DATA -
Links to Related Class(s)
/BCV/CL_...Full list of available SAP object classes
Search for further information about these or an SAP related objects