CHECK_ALTKEY_DB_INDEX_EXISTS SAP Method Check existence of DB index for alternative key (ADT)









Below is documentation, parameters and attributes of ABAP Method CHECK_ALTKEY_DB_INDEX_EXISTS within SAP class /BOBF/CL_CONF_ACT_GEN_DDIC. 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_ACT_GEN_DDIC 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 directly

The following technical details of method CHECK_ALTKEY_DB_INDEX_EXISTS can also be found below:

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


Parameters of Method CHECK_ALTKEY_DB_INDEX_EXISTS

.

NameTypeData TypeDescriptionDefault Value
IT_AK_FIELD_FOR_NODEImportingTYPE
/BOBF/T_CONF_AK_FIELD
Alternative Key Field
IT_EXISTING_DD12VImportingTYPE
DD12VTAB
DD: Index Header of a Table
IT_EXISTING_DD17VImportingTYPE
DD17VTAB
DD: Index Fields of a Table
IV_ALTKEY_KEYImportingTYPE
/BOBF/OBM_ALTKEY_KEY
Alternative Key
IV_CLIENT_DEPENDENTImportingTYPE
ABAP_BOOL
CT_ALTKEY_MISSING_INDEXChangingTYPE
/BOBF/T_FRW_KEY2
Key table
CT_USED_DD12VChangingTYPE
DD12VTAB
Generated Table for View



Exceptions of Method CHECK_ALTKEY_DB_INDEX_EXISTS

This method does not have any exceptions

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: lv_CT_ALTKEY_MISSING_INDEX TYPE /BOBF/T_FRW_KEY2,
lv_CT_USED_DD12V TYPE DD12VTAB,
lv_IT_AK_FIELD_FOR_NODE TYPE /BOBF/T_CONF_AK_FIELD,
lv_IT_EXISTING_DD12V TYPE DD12VTAB,
lv_IT_EXISTING_DD17V TYPE DD17VTAB,
lv_IV_ALTKEY_KEY TYPE /BOBF/OBM_ALTKEY_KEY,
lv_IV_CLIENT_DEPENDENT TYPE ABAP_BOOL,
lv_other TYPE c.

CALL METHOD /BOBF/CL_CONF_ACT_GEN_DDIC=>CHECK_ALTKEY_DB_INDEX_EXISTS(
EXPORTING
IT_AK_FIELD_FOR_NODE = lv_IT_AK_FIELD_FOR_NODE
IT_EXISTING_DD12V = lv_IT_EXISTING_DD12V
IT_EXISTING_DD17V = lv_IT_EXISTING_DD17V
IV_ALTKEY_KEY = lv_IV_ALTKEY_KEY
IV_CLIENT_DEPENDENT = lv_IV_CLIENT_DEPENDENT
CHANGING
CT_ALTKEY_MISSING_INDEX = lv_CT_ALTKEY_MISSING_INDEX
CT_USED_DD12V = lv_CT_USED_DD12V ).

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



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!