SET_IN_MEMORY_DATA SAP Method Set data in index tables









Below is documentation, parameters and attributes of ABAP Method SET_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 SET_IN_MEMORY_DATA can also be found below:

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


Parameters of Method SET_IN_MEMORY_DATA

.

NameTypeData TypeDescriptionDefault Value
IT_CHANGEABLE_TCImportingTYPE
DTINF_TT_TC_ID
Table of TC ID
IT_ILM_MODEL_IN_MEMORYImportingTYPE
DTINF_TT_ILM_MODEL
Table type for model details to support model boundary
IT_ILM_MODEL_ON_DBImportingTYPE
DTINF_TT_ILM_MODEL
Table type for model details to support model boundary
IT_MODEL_IN_MEMORYImportingTYPE
DTINF_TT_MODEL
Table of Model
IT_MODEL_ON_DBImportingTYPE
DTINF_TT_MODEL
Table of Model
IT_MOVED_TABLESImportingTYPE
DTINF_TT_MOVED_TABLES
Moved tables for reconstruction
IT_RENAMED_TC_IN_MEMORYImportingTYPE
DTINF_TT_RENAMED_TC
Renamed TCs
IT_RESP_APPL_IN_MEMORYImportingTYPE
DTINF_TT_RESP_APPL
Table of responsibilities
IT_RESP_APPL_ON_DBImportingTYPE
DTINF_TT_RESP_APPL
Table of responsibilities
IT_RESP_ILM_IN_MEMORYImportingTYPE
DTINF_TT_RESP_ILM
Table type of DTINF_RESP_ILM
IT_RESP_ILM_ON_DBImportingTYPE
DTINF_TT_RESP_ILM
Table type of DTINF_RESP_ILM
IT_RESP_TAB_IN_MEMORYImportingTYPE
DTINF_TT_RESP_TAB
Grouping of TC, contained tables and responsibility
IT_RESP_TAB_ON_DBImportingTYPE
DTINF_TT_RESP_TAB
Grouping of TC, contained tables and responsibility
IT_TC_FIELDS_IN_MEMORYImportingTYPE
DTINF_TT_TC_FIELDS
Table of TC field links
IT_TC_FIELDS_ON_DBImportingTYPE
DTINF_TT_TC_FIELDS
Table of TC field links
IT_TC_INFOT_IN_MEMORYImportingTYPE
DTINF_TT_TC_INFOT
Language specific information on TC
IT_TC_INFOT_ON_DBImportingTYPE
DTINF_TT_TC_INFOT
Information on TCs
IT_TC_INFO_IN_MEMORYImportingTYPE
DTINF_TT_TC_INFO
Table type of DTINF_TC_INFO / DTINF_TC_INFO_C
IT_TC_INFO_ON_DBImportingTYPE
DTINF_TT_TC_INFO
Information on TCs
IT_TC_LINKS_IN_MEMORYImportingTYPE
DTINF_TT_TC_LINK
Table of Table Cluster Links
IT_TC_LINKS_ON_DBImportingTYPE
DTINF_TT_TC_LINK
Table of Table Cluster Links
IT_TC_MODEL_IN_MEMORYImportingTYPE
DTINF_TT_TC_MODEL
Table of Table Cluster data
IT_TC_MODEL_ON_DBImportingTYPE
DTINF_TT_TC_MODEL
Table of Table Cluster data
IT_TC_ORDER_IN_MEMORYImportingTYPE
DTINF_TT_TC_ORDER
Table type of TC order for data collection
IT_TC_ORDER_ON_DBImportingTYPE
DTINF_TT_TC_ORDER
Table type of TC order for data collection
IT_TC_TABLES_IN_MEMORYImportingTYPE
DTINF_TT_TC_TABLES
Table of TC table links
IT_TC_TABLES_ON_DBImportingTYPE
DTINF_TT_TC_TABLES
Table of TC table links
IV_CORRECTION_REQUESTImportingTYPE
TRKORR
Request/Task
IV_IGNORE_DELETEDImportingTYPE
BOOLEAN
Boolean Variable (X=True, -=False, Space=Unknown)
IV_TRANSPORT_TARGETImportingTYPE
TR_TARGET
Transport Target of Request



Exceptions of Method SET_IN_MEMORY_DATA

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO DTINF_IF_INFORMATION.
DATA: lv_IT_CHANGEABLE_TC TYPE DTINF_TT_TC_ID,
lv_IT_ILM_MODEL_IN_MEMORY TYPE DTINF_TT_ILM_MODEL,
lv_IT_ILM_MODEL_ON_DB TYPE DTINF_TT_ILM_MODEL,
lv_IT_MODEL_IN_MEMORY TYPE DTINF_TT_MODEL,
lv_IT_MODEL_ON_DB TYPE DTINF_TT_MODEL,
lv_IT_MOVED_TABLES TYPE DTINF_TT_MOVED_TABLES,
lv_IT_RENAMED_TC_IN_MEMORY TYPE DTINF_TT_RENAMED_TC,
lv_IT_RESP_APPL_IN_MEMORY TYPE DTINF_TT_RESP_APPL,
lv_IT_RESP_APPL_ON_DB TYPE DTINF_TT_RESP_APPL,
lv_IT_RESP_ILM_IN_MEMORY TYPE DTINF_TT_RESP_ILM,
lv_IT_RESP_ILM_ON_DB TYPE DTINF_TT_RESP_ILM,
lv_IT_RESP_TAB_IN_MEMORY TYPE DTINF_TT_RESP_TAB,
lv_IT_RESP_TAB_ON_DB TYPE DTINF_TT_RESP_TAB,
lv_IT_TC_FIELDS_IN_MEMORY TYPE DTINF_TT_TC_FIELDS,
lv_IT_TC_FIELDS_ON_DB TYPE DTINF_TT_TC_FIELDS,
lv_IT_TC_INFOT_IN_MEMORY TYPE DTINF_TT_TC_INFOT,
lv_IT_TC_INFOT_ON_DB TYPE DTINF_TT_TC_INFOT,
lv_IT_TC_INFO_IN_MEMORY TYPE DTINF_TT_TC_INFO,
lv_IT_TC_INFO_ON_DB TYPE DTINF_TT_TC_INFO,
lv_IT_TC_LINKS_IN_MEMORY TYPE DTINF_TT_TC_LINK,
lv_IT_TC_LINKS_ON_DB TYPE DTINF_TT_TC_LINK,
lv_IT_TC_MODEL_IN_MEMORY TYPE DTINF_TT_TC_MODEL,
lv_IT_TC_MODEL_ON_DB TYPE DTINF_TT_TC_MODEL,
lv_IT_TC_ORDER_IN_MEMORY TYPE DTINF_TT_TC_ORDER,
lv_IT_TC_ORDER_ON_DB TYPE DTINF_TT_TC_ORDER,
lv_IT_TC_TABLES_IN_MEMORY TYPE DTINF_TT_TC_TABLES,
lv_IT_TC_TABLES_ON_DB TYPE DTINF_TT_TC_TABLES,
lv_IV_CORRECTION_REQUEST TYPE TRKORR,
lv_IV_IGNORE_DELETED TYPE BOOLEAN,
lv_IV_TRANSPORT_TARGET TYPE TR_TARGET,
lv_other TYPE c.

CALL METHOD lo_class=>SET_IN_MEMORY_DATA(
EXPORTING
IT_CHANGEABLE_TC = lv_IT_CHANGEABLE_TC
IT_ILM_MODEL_IN_MEMORY = lv_IT_ILM_MODEL_IN_MEMORY
IT_ILM_MODEL_ON_DB = lv_IT_ILM_MODEL_ON_DB
IT_MODEL_IN_MEMORY = lv_IT_MODEL_IN_MEMORY
IT_MODEL_ON_DB = lv_IT_MODEL_ON_DB
IT_MOVED_TABLES = lv_IT_MOVED_TABLES
IT_RENAMED_TC_IN_MEMORY = lv_IT_RENAMED_TC_IN_MEMORY
IT_RESP_APPL_IN_MEMORY = lv_IT_RESP_APPL_IN_MEMORY
IT_RESP_APPL_ON_DB = lv_IT_RESP_APPL_ON_DB
IT_RESP_ILM_IN_MEMORY = lv_IT_RESP_ILM_IN_MEMORY
IT_RESP_ILM_ON_DB = lv_IT_RESP_ILM_ON_DB
IT_RESP_TAB_IN_MEMORY = lv_IT_RESP_TAB_IN_MEMORY
IT_RESP_TAB_ON_DB = lv_IT_RESP_TAB_ON_DB
IT_TC_FIELDS_IN_MEMORY = lv_IT_TC_FIELDS_IN_MEMORY
IT_TC_FIELDS_ON_DB = lv_IT_TC_FIELDS_ON_DB
IT_TC_INFOT_IN_MEMORY = lv_IT_TC_INFOT_IN_MEMORY
IT_TC_INFOT_ON_DB = lv_IT_TC_INFOT_ON_DB
IT_TC_INFO_IN_MEMORY = lv_IT_TC_INFO_IN_MEMORY
IT_TC_INFO_ON_DB = lv_IT_TC_INFO_ON_DB
IT_TC_LINKS_IN_MEMORY = lv_IT_TC_LINKS_IN_MEMORY
IT_TC_LINKS_ON_DB = lv_IT_TC_LINKS_ON_DB
IT_TC_MODEL_IN_MEMORY = lv_IT_TC_MODEL_IN_MEMORY
IT_TC_MODEL_ON_DB = lv_IT_TC_MODEL_ON_DB
IT_TC_ORDER_IN_MEMORY = lv_IT_TC_ORDER_IN_MEMORY
IT_TC_ORDER_ON_DB = lv_IT_TC_ORDER_ON_DB
IT_TC_TABLES_IN_MEMORY = lv_IT_TC_TABLES_IN_MEMORY
IT_TC_TABLES_ON_DB = lv_IT_TC_TABLES_ON_DB
IV_CORRECTION_REQUEST = lv_IV_CORRECTION_REQUEST
IV_IGNORE_DELETED = lv_IV_IGNORE_DELETED
IV_TRANSPORT_TARGET = lv_IV_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!