GET_ILM_OBJECT_TABLES SAP Method Get all tables associated to an ILM object









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

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


Parameters of Method GET_ILM_OBJECT_TABLES

.

NameTypeData TypeDescriptionDefault Value
IT_EXTRA_TABLESImportingTYPE
DTINF_TT_TAB_FIELD
Table of table and field names
IV_FROM_ADAPTImportingTYPE
BOOLEAN
Boolean Variable (X=True, -=False, Space=Unknown)
IV_ILM_OBJECTImportingTYPE
LRM_OBJECT_TYPE
ILM Object
IV_ONLY_TABLESImportingTYPE
BOOLEAN
Boolean Variable (X=True, -=False, Space=Unknown)
ES_HASHExportingTYPE
DTINF_S_HASH
Generic hash look-up table
ET_ILM_OBJECT_TABLESExportingTYPE
DTINF_TT_ILM_OBJECT_TABLES
...
ET_ILM_OBJ_DEFExportingTYPE
DTINF_TT_OBJ_DEFINITIONS
Table of Object specific definitions
ET_OBJECTS_NO_CHECKTABLESExportingTYPE
DTINF_TT_OBJ_DEFINITIONS
Table of Object specific definitions
ET_TABNAMESExportingTYPE
DTINF_TT_TABNAMES
Table of table names



Exceptions of Method GET_ILM_OBJECT_TABLES

ES_HASHExportingTYPE
DTINF_S_HASHGeneric hash look-up tableET_ILM_OBJECT_TABLESExportingTYPE
DTINF_TT_ILM_OBJECT_TABLES...ET_ILM_OBJ_DEFExportingTYPE
DTINF_TT_OBJ_DEFINITIONSTable of Object specific definitionsET_OBJECTS_NO_CHECKTABLESExportingTYPE
DTINF_TT_OBJ_DEFINITIONSTable of Object specific definitionsET_TABNAMESExportingTYPE
DTINF_TT_TABNAMESTable of table namesNO_DATA_FOUND - No data was found

Example ABAP coding


DATA: lo_class TYPE REF TO DTINF_IF_INFORMATION.
DATA: lv_ES_HASH TYPE DTINF_S_HASH,
lv_ET_ILM_OBJECT_TABLES TYPE DTINF_TT_ILM_OBJECT_TABLES,
lv_ET_ILM_OBJ_DEF TYPE DTINF_TT_OBJ_DEFINITIONS,
lv_ET_OBJECTS_NO_CHECKTABLES TYPE DTINF_TT_OBJ_DEFINITIONS,
lv_ET_TABNAMES TYPE DTINF_TT_TABNAMES,
lv_IT_EXTRA_TABLES TYPE DTINF_TT_TAB_FIELD,
lv_IV_FROM_ADAPT TYPE BOOLEAN,
lv_IV_ILM_OBJECT TYPE LRM_OBJECT_TYPE,
lv_IV_ONLY_TABLES TYPE BOOLEAN,
lv_other TYPE c.

CALL METHOD lo_class=>GET_ILM_OBJECT_TABLES(
EXPORTING
IT_EXTRA_TABLES = lv_IT_EXTRA_TABLES
IV_FROM_ADAPT = lv_IV_FROM_ADAPT
IV_ILM_OBJECT = lv_IV_ILM_OBJECT
IV_ONLY_TABLES = lv_IV_ONLY_TABLES
IMPORTING
ES_HASH = lv_ES_HASH
ET_ILM_OBJECT_TABLES = lv_ET_ILM_OBJECT_TABLES
ET_ILM_OBJ_DEF = lv_ET_ILM_OBJ_DEF
ET_OBJECTS_NO_CHECKTABLES = lv_ET_OBJECTS_NO_CHECKTABLES
ET_TABNAMES = lv_ET_TABNAMES ).

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!