_CHECK_INDEX_EXISTENCE SAP Method Check Existence of Database Index
Below is documentation, parameters and attributes of ABAP Method _CHECK_INDEX_EXISTENCE within SAP class /BOBF/CL_CONF_V_DATABASE_INDEX. 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 /BOBF/CL_CONF_V_DATABASE_INDEX into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Static
This is a Static Method so you can call it directlyThe following technical details of method _CHECK_INDEX_EXISTENCE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method _CHECK_INDEX_EXISTENCE
.| Name | Type | Data Type | Description | Default Value |
| IT_FIELDNAME | Importing | TYPE TY_GT_FIELDNAME | Field Name Tab | |
| IT_INDEX_FIELDS | Importing | TYPE TY_GT_INDEX_FIELDS | ||
| IT_TABLE_FIELDS | Importing | TYPE TY_GT_TABLE_FIELDS | ||
| IT_TABLE_INDICES | Importing | TYPE TY_GT_TABLE_INDICES | ||
| IV_FULL_CHECK | Importing | TYPE ABAP_BOOL | ||
| EV_INDEX_EXISTS | Exporting | TYPE ABAP_BOOL |
Exceptions of Method _CHECK_INDEX_EXISTENCE
This method does not have any exceptionsExample 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: lv_EV_INDEX_EXISTS TYPE ABAP_BOOL,
lv_IT_FIELDNAME TYPE TY_GT_FIELDNAME,
lv_IT_INDEX_FIELDS TYPE TY_GT_INDEX_FIELDS,
lv_IT_TABLE_FIELDS TYPE TY_GT_TABLE_FIELDS,
lv_IT_TABLE_INDICES TYPE TY_GT_TABLE_INDICES,
lv_IV_FULL_CHECK TYPE ABAP_BOOL,
lv_other TYPE c.
CALL METHOD /BOBF/CL_CONF_V_DATABASE_INDEX=>_CHECK_INDEX_EXISTENCE(
EXPORTING
IT_FIELDNAME = lv_IT_FIELDNAME
IT_INDEX_FIELDS = lv_IT_INDEX_FIELDS
IT_TABLE_FIELDS = lv_IT_TABLE_FIELDS
IT_TABLE_INDICES = lv_IT_TABLE_INDICES
IV_FULL_CHECK = lv_IV_FULL_CHECK
IMPORTING
EV_INDEX_EXISTS = lv_EV_INDEX_EXISTS ).
Links to Related Class(s)
/BOBF/CL...Full list of available SAP object classes
Search for further information about these or an SAP related objects