BUILD_DDIC_CTT SAP Method Build table type for combined data type
Below is documentation, parameters and attributes of ABAP Method BUILD_DDIC_CTT 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 - 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 BUILD_DDIC_CTT can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method BUILD_DDIC_CTT
.| Name | Type | Data Type | Description | Default Value |
| IT_ALTKEY | Importing | TYPE /BOBF/T_CONF_ALTKEY | Configuration: Alternative Keys | |
| IT_ASSOC | Importing | TYPE /BOBF/T_CONF_ASSOC | Configuration: Links | |
| IT_ASSOC_BINDING | Importing | TYPE /BOBF/T_CONF_ASSOCB | Association Binding | |
| IV_DESCRIPTION | Importing | TYPE /BOBF/OBM_DESCRIPTION | Description | |
| IV_INCLUDE_NAME | Importing | TYPE TYPENAME | Name of Dictionary Type | |
| IV_KEY_SEC_KEY | Importing | TYPE SECKEYNAME | Name of Secondary Key for field KEY | |
| IV_NAME | Importing | TYPE TYPENAME | Name of Dictionary Type | |
| IV_ROOT_SEC_KEY | Importing | TYPE SECKEYNAME | Name of Secondary Key for field ROOT_KEY | |
| IV_SORTED | Importing | TYPE BOOLE_D | Table Type sorted | |
| ES_DD40V | Exporting | TYPE DD40V | DD: Interface structure for table types | |
| ET_DD42V | Exporting | TYPE DD42V_TAB | DD: Table of Secondary Key Fields | |
| ET_DD43V | Exporting | TYPE DD43V_TAB | DD: Table of Secondary Index Headers |
Exceptions of Method BUILD_DDIC_CTT
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: lo_class TYPE REF TO /BOBF/CL_CONF_ACT_GEN_DDIC.
DATA: lv_ES_DD40V TYPE DD40V,
lv_ET_DD42V TYPE DD42V_TAB,
lv_ET_DD43V TYPE DD43V_TAB,
lv_IT_ALTKEY TYPE /BOBF/T_CONF_ALTKEY,
lv_IT_ASSOC TYPE /BOBF/T_CONF_ASSOC,
lv_IT_ASSOC_BINDING TYPE /BOBF/T_CONF_ASSOCB,
lv_IV_DESCRIPTION TYPE /BOBF/OBM_DESCRIPTION,
lv_IV_INCLUDE_NAME TYPE TYPENAME,
lv_IV_KEY_SEC_KEY TYPE SECKEYNAME,
lv_IV_NAME TYPE TYPENAME,
lv_IV_ROOT_SEC_KEY TYPE SECKEYNAME,
lv_IV_SORTED TYPE BOOLE_D,
lv_other TYPE c.
CALL METHOD lo_class=>BUILD_DDIC_CTT(
EXPORTING
IT_ALTKEY = lv_IT_ALTKEY
IT_ASSOC = lv_IT_ASSOC
IT_ASSOC_BINDING = lv_IT_ASSOC_BINDING
IV_DESCRIPTION = lv_IV_DESCRIPTION
IV_INCLUDE_NAME = lv_IV_INCLUDE_NAME
IV_KEY_SEC_KEY = lv_IV_KEY_SEC_KEY
IV_NAME = lv_IV_NAME
IV_ROOT_SEC_KEY = lv_IV_ROOT_SEC_KEY
IV_SORTED = lv_IV_SORTED
IMPORTING
ES_DD40V = lv_ES_DD40V
ET_DD42V = lv_ET_DD42V
ET_DD43V = lv_ET_DD43V ).
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