TRANSLATE_TABLE_ROW SAP Method Translate table line









Below is documentation, parameters and attributes of ABAP Method TRANSLATE_TABLE_ROW within SAP class /BCV/IF_FND_TRANSLATE_ROW. 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 /BCV/IF_FND_TRANSLATE_ROW 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 TRANSLATE_TABLE_ROW can also be found below:

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


Parameters of Method TRANSLATE_TABLE_ROW

.

NameTypeData TypeDescriptionDefault Value
IS_TABLE_LINE_FROMImportingTYPE
ANY
PCV Table Line
IV_MODEImportingTYPE
/BCV/FND_MIGRATION_MODE
Migration mode
IV_TABLE_FROMImportingTYPE
/BCV/FND_TAB_FROM
PCV Table
IV_TABLE_TOImportingTYPE
/BCV/FND_TAB_TO
BCV Table
ES_TABLE_LINE_TOExportingTYPE
ANY
CO_LOGChangingTYPE REF TO
/BCV/CL_FND_LOG
Log



Exceptions of Method TRANSLATE_TABLE_ROW

This method does not have any exceptions

Example ABAP coding


DATA: lv_CO_LOG TYPE /BCV/CL_FND_LOG,
lv_ES_TABLE_LINE_TO TYPE ANY,
lv_IS_TABLE_LINE_FROM TYPE ANY,
lv_IV_MODE TYPE /BCV/FND_MIGRATION_MODE,
lv_IV_TABLE_FROM TYPE /BCV/FND_TAB_FROM,
lv_IV_TABLE_TO TYPE /BCV/FND_TAB_TO,
lv_other TYPE c.

CALL METHOD /BCV/IF_FND_TRANSLATE_ROW=>TRANSLATE_TABLE_ROW(
EXPORTING
IS_TABLE_LINE_FROM = lv_IS_TABLE_LINE_FROM
IV_MODE = lv_IV_MODE
IV_TABLE_FROM = lv_IV_TABLE_FROM
IV_TABLE_TO = lv_IV_TABLE_TO
IMPORTING
ES_TABLE_LINE_TO = lv_ES_TABLE_LINE_TO
CHANGING
CO_LOG = lv_CO_LOG ).

Links to Related Class(s)

/BCV/IF_...
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!