REMOVE_ILM_MODEL SAP Method Remove ILM model based on objects









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

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


Parameters of Method REMOVE_ILM_MODEL

.

NameTypeData TypeDescriptionDefault Value
IT_ILM_RANGEImportingTYPE
DTINF_R_ILM_RANGE
ILM range
IV_DELETEImportingTYPE
BOOLEAN
True if model has to be deleted
IV_IGNORE_BOUNDARY_CHECKImportingTYPE
BOOLEAN
Boolean Variable (X=True, -=False, Space=Unknown)
ET_MODEL_INFOExportingTYPE
DTINF_T_MODEL_INFO
Returns model data
ET_TRANSPORT_ERROR_TEXTSExportingTYPE
DTINF_TT_XML_STRINGS
XML String Table
CT_OBJECTSChangingTYPE
DTINF_TT_OBJ_DEFINITIONS
Table of Object specific definitions.



Exceptions of Method REMOVE_ILM_MODEL

ET_MODEL_INFOExportingTYPE
DTINF_T_MODEL_INFOReturns model dataET_TRANSPORT_ERROR_TEXTSExportingTYPE
DTINF_TT_XML_STRINGSXML String TableTRANSPORT_ERROR - Transport Error

Example ABAP coding


DATA: lo_class TYPE REF TO DTINF_IF_INFORMATION.
DATA: lv_CT_OBJECTS TYPE DTINF_TT_OBJ_DEFINITIONS,
lv_ET_MODEL_INFO TYPE DTINF_T_MODEL_INFO,
lv_ET_TRANSPORT_ERROR_TEXTS TYPE DTINF_TT_XML_STRINGS,
lv_IT_ILM_RANGE TYPE DTINF_R_ILM_RANGE,
lv_IV_DELETE TYPE BOOLEAN,
lv_IV_IGNORE_BOUNDARY_CHECK TYPE BOOLEAN,
lv_other TYPE c.

CALL METHOD lo_class=>REMOVE_ILM_MODEL(
EXPORTING
IT_ILM_RANGE = lv_IT_ILM_RANGE
IV_DELETE = lv_IV_DELETE
IV_IGNORE_BOUNDARY_CHECK = lv_IV_IGNORE_BOUNDARY_CHECK
IMPORTING
ET_MODEL_INFO = lv_ET_MODEL_INFO
ET_TRANSPORT_ERROR_TEXTS = lv_ET_TRANSPORT_ERROR_TEXTS
CHANGING
CT_OBJECTS = lv_CT_OBJECTS ).

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!