GET_IN_MEMORY_DATA SAP Method Get data from index tables









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

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


Parameters of Method GET_IN_MEMORY_DATA

.

NameTypeData TypeDescriptionDefault Value
IV_IGNORE_DELETEDImportingTYPE
BOOLEAN
ET_CHANGEABLE_TCExportingTYPE
DTINF_TT_TC_ID
Table of TC ID
ET_ILM_MODEL_IN_MEMORYExportingTYPE
DTINF_TT_ILM_MODEL
Table type for model details to support model boundary
ET_ILM_MODEL_ON_DBExportingTYPE
DTINF_TT_ILM_MODEL
Table type for model details to support model boundary
ET_MODEL_IN_MEMORYExportingTYPE
DTINF_TT_MODEL
Table of Model
ET_MODEL_ON_DBExportingTYPE
DTINF_TT_MODEL
Table of Model
ET_MOVED_TABLESExportingTYPE
DTINF_TT_MOVED_TABLES
Moved tables for reconstruction
ET_RENAMED_TC_IN_MEMORYExportingTYPE
DTINF_TT_RENAMED_TC
Table of renamed TCs
ET_RESP_APPL_IN_MEMORYExportingTYPE
DTINF_TT_RESP_APPL
Table of responsibilities
ET_RESP_APPL_ON_DBExportingTYPE
DTINF_TT_RESP_APPL
Table of responsibilities
ET_RESP_ILM_IN_MEMORYExportingTYPE
DTINF_TT_RESP_ILM
Table type of DTINF_RESP_ILM
ET_RESP_ILM_ON_DBExportingTYPE
DTINF_TT_RESP_ILM
Table type of DTINF_RESP_ILM
ET_RESP_TAB_IN_MEMORYExportingTYPE
DTINF_TT_RESP_TAB
Grouping of TC, contained tables and responsibility
ET_RESP_TAB_ON_DBExportingTYPE
DTINF_TT_RESP_TAB
Grouping of TC, contained tables and responsibility
ET_TC_FIELDS_IN_MEMORYExportingTYPE
DTINF_TT_TC_FIELDS
Table of TC field links
ET_TC_FIELDS_ON_DBExportingTYPE
DTINF_TT_TC_FIELDS
Table of TC field links
ET_TC_INFOT_IN_MEMORYExportingTYPE
DTINF_TT_TC_INFOT
Language specific information on TC
ET_TC_INFOT_ON_DBExportingTYPE
DTINF_TT_TC_INFOT
Language specific information on TC
ET_TC_INFO_IN_MEMORYExportingTYPE
DTINF_TT_TC_INFO
Table type of DTINF_TC_INFO / DTINF_TC_INFO_C
ET_TC_INFO_ON_DBExportingTYPE
DTINF_TT_TC_INFO
Information on TCs
ET_TC_LINKS_IN_MEMORYExportingTYPE
DTINF_TT_TC_LINK
Table of Table Cluster Links
ET_TC_LINKS_ON_DBExportingTYPE
DTINF_TT_TC_LINK
Table of Table Cluster Links
ET_TC_MODEL_IN_MEMORYExportingTYPE
DTINF_TT_TC_MODEL
Table of Table Cluster data
ET_TC_MODEL_ON_DBExportingTYPE
DTINF_TT_TC_MODEL
Table of Table Cluster data
ET_TC_ORDER_IN_MEMORYExportingTYPE
DTINF_TT_TC_ORDER
Table type of TC order for data collection
ET_TC_ORDER_ON_DBExportingTYPE
DTINF_TT_TC_ORDER
Table type of TC order for data collection
ET_TC_TABLES_IN_MEMORYExportingTYPE
DTINF_TT_TC_TABLES
Table of TC table links
ET_TC_TABLES_ON_DBExportingTYPE
DTINF_TT_TC_TABLES
Table of TC table links
EV_CORRECTION_REQUESTExportingTYPE
TRKORR
Request/Task
EV_TRANSPORT_TARGETExportingTYPE
TR_TARGET
Transport Target of Request



Exceptions of Method GET_IN_MEMORY_DATA

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO DTINF_IF_INFORMATION.
DATA: lv_ET_CHANGEABLE_TC TYPE DTINF_TT_TC_ID,
lv_ET_ILM_MODEL_IN_MEMORY TYPE DTINF_TT_ILM_MODEL,
lv_ET_ILM_MODEL_ON_DB TYPE DTINF_TT_ILM_MODEL,
lv_ET_MODEL_IN_MEMORY TYPE DTINF_TT_MODEL,
lv_ET_MODEL_ON_DB TYPE DTINF_TT_MODEL,
lv_ET_MOVED_TABLES TYPE DTINF_TT_MOVED_TABLES,
lv_ET_RENAMED_TC_IN_MEMORY TYPE DTINF_TT_RENAMED_TC,
lv_ET_RESP_APPL_IN_MEMORY TYPE DTINF_TT_RESP_APPL,
lv_ET_RESP_APPL_ON_DB TYPE DTINF_TT_RESP_APPL,
lv_ET_RESP_ILM_IN_MEMORY TYPE DTINF_TT_RESP_ILM,
lv_ET_RESP_ILM_ON_DB TYPE DTINF_TT_RESP_ILM,
lv_ET_RESP_TAB_IN_MEMORY TYPE DTINF_TT_RESP_TAB,
lv_ET_RESP_TAB_ON_DB TYPE DTINF_TT_RESP_TAB,
lv_ET_TC_FIELDS_IN_MEMORY TYPE DTINF_TT_TC_FIELDS,
lv_ET_TC_FIELDS_ON_DB TYPE DTINF_TT_TC_FIELDS,
lv_ET_TC_INFOT_IN_MEMORY TYPE DTINF_TT_TC_INFOT,
lv_ET_TC_INFOT_ON_DB TYPE DTINF_TT_TC_INFOT,
lv_ET_TC_INFO_IN_MEMORY TYPE DTINF_TT_TC_INFO,
lv_ET_TC_INFO_ON_DB TYPE DTINF_TT_TC_INFO,
lv_ET_TC_LINKS_IN_MEMORY TYPE DTINF_TT_TC_LINK,
lv_ET_TC_LINKS_ON_DB TYPE DTINF_TT_TC_LINK,
lv_ET_TC_MODEL_IN_MEMORY TYPE DTINF_TT_TC_MODEL,
lv_ET_TC_MODEL_ON_DB TYPE DTINF_TT_TC_MODEL,
lv_ET_TC_ORDER_IN_MEMORY TYPE DTINF_TT_TC_ORDER,
lv_ET_TC_ORDER_ON_DB TYPE DTINF_TT_TC_ORDER,
lv_ET_TC_TABLES_IN_MEMORY TYPE DTINF_TT_TC_TABLES,
lv_ET_TC_TABLES_ON_DB TYPE DTINF_TT_TC_TABLES,
lv_EV_CORRECTION_REQUEST TYPE TRKORR,
lv_EV_TRANSPORT_TARGET TYPE TR_TARGET,
lv_IV_IGNORE_DELETED TYPE BOOLEAN,
lv_other TYPE c.

CALL METHOD lo_class=>GET_IN_MEMORY_DATA(
EXPORTING
IV_IGNORE_DELETED = lv_IV_IGNORE_DELETED
IMPORTING
ET_CHANGEABLE_TC = lv_ET_CHANGEABLE_TC
ET_ILM_MODEL_IN_MEMORY = lv_ET_ILM_MODEL_IN_MEMORY
ET_ILM_MODEL_ON_DB = lv_ET_ILM_MODEL_ON_DB
ET_MODEL_IN_MEMORY = lv_ET_MODEL_IN_MEMORY
ET_MODEL_ON_DB = lv_ET_MODEL_ON_DB
ET_MOVED_TABLES = lv_ET_MOVED_TABLES
ET_RENAMED_TC_IN_MEMORY = lv_ET_RENAMED_TC_IN_MEMORY
ET_RESP_APPL_IN_MEMORY = lv_ET_RESP_APPL_IN_MEMORY
ET_RESP_APPL_ON_DB = lv_ET_RESP_APPL_ON_DB
ET_RESP_ILM_IN_MEMORY = lv_ET_RESP_ILM_IN_MEMORY
ET_RESP_ILM_ON_DB = lv_ET_RESP_ILM_ON_DB
ET_RESP_TAB_IN_MEMORY = lv_ET_RESP_TAB_IN_MEMORY
ET_RESP_TAB_ON_DB = lv_ET_RESP_TAB_ON_DB
ET_TC_FIELDS_IN_MEMORY = lv_ET_TC_FIELDS_IN_MEMORY
ET_TC_FIELDS_ON_DB = lv_ET_TC_FIELDS_ON_DB
ET_TC_INFOT_IN_MEMORY = lv_ET_TC_INFOT_IN_MEMORY
ET_TC_INFOT_ON_DB = lv_ET_TC_INFOT_ON_DB
ET_TC_INFO_IN_MEMORY = lv_ET_TC_INFO_IN_MEMORY
ET_TC_INFO_ON_DB = lv_ET_TC_INFO_ON_DB
ET_TC_LINKS_IN_MEMORY = lv_ET_TC_LINKS_IN_MEMORY
ET_TC_LINKS_ON_DB = lv_ET_TC_LINKS_ON_DB
ET_TC_MODEL_IN_MEMORY = lv_ET_TC_MODEL_IN_MEMORY
ET_TC_MODEL_ON_DB = lv_ET_TC_MODEL_ON_DB
ET_TC_ORDER_IN_MEMORY = lv_ET_TC_ORDER_IN_MEMORY
ET_TC_ORDER_ON_DB = lv_ET_TC_ORDER_ON_DB
ET_TC_TABLES_IN_MEMORY = lv_ET_TC_TABLES_IN_MEMORY
ET_TC_TABLES_ON_DB = lv_ET_TC_TABLES_ON_DB
EV_CORRECTION_REQUEST = lv_EV_CORRECTION_REQUEST
EV_TRANSPORT_TARGET = lv_EV_TRANSPORT_TARGET ).

Links to Related Class(s)

DTINF_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!