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
.| Name | Type | Data Type | Description | Default Value |
| IS_BCSET | Importing | TYPE DTINF_S_BCSET | Switch IDs to Resp. ID | |
| IS_HASH | Importing | TYPE DTINF_S_HASH | Generic hash look-up table | |
| IS_MODEL | Importing | TYPE DTINF_S_MODEL | Fields of table DTINF_MODEL | |
| IS_PURPOSE_HASH | Importing | TYPE DTINF_S_PURPOSE_HASH | Purpose combination used for GSS | |
| IS_RESP_APPL | Importing | TYPE DTINF_S_RESP_APPL | Responsibility for Appl. Comp., Package, Delivery Unit | |
| IS_RESP_ILM | Importing | TYPE DTINF_S_RESP_ILM | Fields for table DTINF_RESP_ILM | |
| IS_RESP_TAB | Importing | TYPE DTINF_S_RESP_TAB | Grouping of TC, contained tables and responsibility | |
| IS_TC_FIELD | Importing | TYPE DTINF_S_TC_FIELDS | Table Clusters: Fields (SAP delivered) | |
| IS_TC_INFO | Importing | TYPE DTINF_S_TC_INFO | Information on a TC | |
| IS_TC_INFOT | Importing | TYPE DTINF_S_TC_INFOT | Structure of DTINF_TC_INFOT2 | |
| IS_TC_ORDER | Importing | TYPE DTINF_S_TC_ORDER | TC assignment to purposes | |
| IS_TC_TABLE | Importing | TYPE 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