LOAD_DATA_FROM_DB SAP Method Load Data from given DB table
Below is documentation, parameters and attributes of ABAP Method LOAD_DATA_FROM_DB within SAP class /BOFU/CL_FDT_RETRIEVE. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name /BOFU/CL_FDT_RETRIEVE 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 LOAD_DATA_FROM_DB can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method LOAD_DATA_FROM_DB
.| Name | Type | Data Type | Description | Default Value |
| IO_PERSISTENCE | Importing | TYPE REF TO IF_FDT_PERSISTENCE | FDT: Persistence | |
| IV_TABLE_NAME | Importing | TYPE TABNAME | Table Name | |
| IV_VERSION | Importing | TYPE IF_FDT_TYPES=>VERSION | Version | |
| CS_DATA | Changing | TYPE ANY | ||
| CT_DATA | Changing | TYPE INDEX TABLE |
Exceptions of Method LOAD_DATA_FROM_DB
This method does not have any exceptionsExample ABAP coding
This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.DATA: lv_CS_DATA TYPE ANY,
lv_CT_DATA TYPE INDEX TABLE,
lv_IO_PERSISTENCE TYPE IF_FDT_PERSISTENCE,
lv_IV_TABLE_NAME TYPE TABNAME,
lv_IV_VERSION TYPE IF_FDT_TYPES=>VERSION,
lv_other TYPE c.
CALL METHOD /BOFU/CL_FDT_RETRIEVE=>LOAD_DATA_FROM_DB(
EXPORTING
IO_PERSISTENCE = lv_IO_PERSISTENCE
IV_TABLE_NAME = lv_IV_TABLE_NAME
IV_VERSION = lv_IV_VERSION
CHANGING
CS_DATA = lv_CS_DATA
CT_DATA = lv_CT_DATA ).
Links to Related Class(s)
/BOFU/CL...Full list of available SAP object classes
Search for further information about these or an SAP related objects