DELETE_DATA_IN_MEMORY SAP Method Delete specific data stored in memory









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

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


Parameters of Method DELETE_DATA_IN_MEMORY

.

NameTypeData TypeDescriptionDefault Value
IS_BCSETImportingTYPE
DTINF_S_BCSET
Switch IDs to Resp. ID
IS_HASHImportingTYPE
DTINF_S_HASH
Generic hash look-up table
IS_MODELImportingTYPE
DTINF_S_MODEL
Fields of table DTINF_MODEL
IS_PURPOSE_HASHImportingTYPE
DTINF_S_PURPOSE_HASH
Purpose combination used for GSS
IS_RESP_APPLImportingTYPE
DTINF_S_RESP_APPL
Responsibility for Appl. Comp., Package, Delivery Unit
IS_RESP_ILMImportingTYPE
DTINF_S_RESP_ILM
Fields for table DTINF_RESP_ILM
IS_RESP_TABImportingTYPE
DTINF_S_RESP_TAB
Grouping of TC, contained tables and responsibility
IS_TC_FIELDImportingTYPE
DTINF_S_TC_FIELDS
Table Clusters: Fields (SAP delivered)
IS_TC_INFOImportingTYPE
DTINF_S_TC_INFO
Information on a TC
IS_TC_INFOTImportingTYPE
DTINF_S_TC_INFOT
Structure of DTINF_TC_INFOT2
IS_TC_ORDERImportingTYPE
DTINF_S_TC_ORDER
TC assignment to purposes
IS_TC_TABLEImportingTYPE
DTINF_S_TC_TABLES
Table Clusters: Tables (SAP delivered)



Exceptions of Method DELETE_DATA_IN_MEMORY

ENTRY_NOT_EXIST -

Example 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: lo_class TYPE REF TO DTINF_CL_INFORMATION.
DATA: lv_IS_BCSET TYPE DTINF_S_BCSET,
lv_IS_HASH TYPE DTINF_S_HASH,
lv_IS_MODEL TYPE DTINF_S_MODEL,
lv_IS_PURPOSE_HASH TYPE DTINF_S_PURPOSE_HASH,
lv_IS_RESP_APPL TYPE DTINF_S_RESP_APPL,
lv_IS_RESP_ILM TYPE DTINF_S_RESP_ILM,
lv_IS_RESP_TAB TYPE DTINF_S_RESP_TAB,
lv_IS_TC_FIELD TYPE DTINF_S_TC_FIELDS,
lv_IS_TC_INFO TYPE DTINF_S_TC_INFO,
lv_IS_TC_INFOT TYPE DTINF_S_TC_INFOT,
lv_IS_TC_ORDER TYPE DTINF_S_TC_ORDER,
lv_IS_TC_TABLE TYPE DTINF_S_TC_TABLES,
lv_other TYPE c.

CALL METHOD lo_class=>DELETE_DATA_IN_MEMORY(
EXPORTING
IS_BCSET = lv_IS_BCSET
IS_HASH = lv_IS_HASH
IS_MODEL = lv_IS_MODEL
IS_PURPOSE_HASH = lv_IS_PURPOSE_HASH
IS_RESP_APPL = lv_IS_RESP_APPL
IS_RESP_ILM = lv_IS_RESP_ILM
IS_RESP_TAB = lv_IS_RESP_TAB
IS_TC_FIELD = lv_IS_TC_FIELD
IS_TC_INFO = lv_IS_TC_INFO
IS_TC_INFOT = lv_IS_TC_INFOT
IS_TC_ORDER = lv_IS_TC_ORDER
IS_TC_TABLE = lv_IS_TC_TABLE ).

Links to Related Class(s)

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