MOVE_DB_TO_RUNTIME_DATA SAP Method of class /BOBF/CL_DAC_LEGACY_TABLE









Below is documentation, parameters and attributes of ABAP Method MOVE_DB_TO_RUNTIME_DATA within SAP class /BOBF/CL_DAC_LEGACY_TABLE. 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 /BOBF/CL_DAC_LEGACY_TABLE into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.


Method Type - Instance

This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.

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

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


Parameters of Method MOVE_DB_TO_RUNTIME_DATA

.

NameTypeData TypeDescriptionDefault Value
IR_DBDATAImportingTYPE REF TO
DATA
IS_NODE_CONFImportingTYPE
/BOBF/S_DAC_NODE
IV_FILL_DATAImportingTYPE
BOOLE_D
Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
ET_DATAExportingTYPE
/BOBF/T_BUF_DATA_READ
ET_NODEExportingTYPE
/BOBF/T_FRW_NODE



Exceptions of Method MOVE_DB_TO_RUNTIME_DATA

/BOBF/CX_DAC -

Example ABAP coding


DATA: lo_class TYPE REF TO /BOBF/CL_DAC_LEGACY_TABLE.
DATA: lv_ET_DATA TYPE /BOBF/T_BUF_DATA_READ,
lv_ET_NODE TYPE /BOBF/T_FRW_NODE,
lv_IR_DBDATA TYPE DATA,
lv_IS_NODE_CONF TYPE /BOBF/S_DAC_NODE,
lv_IV_FILL_DATA TYPE BOOLE_D,
lv_other TYPE c.

CALL METHOD lo_class=>MOVE_DB_TO_RUNTIME_DATA(
EXPORTING
IR_DBDATA = lv_IR_DBDATA
IS_NODE_CONF = lv_IS_NODE_CONF
IV_FILL_DATA = lv_IV_FILL_DATA
IMPORTING
ET_DATA = lv_ET_DATA
ET_NODE = lv_ET_NODE ).

Links to Related Class(s)

/BOBF/CL...
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!