_CHECK_ELEMENTS_VS_DDIC SAP Method of class /BOBF/CL_CONF_CDS_LINK_CHECK
Below is documentation, parameters and attributes of ABAP Method _CHECK_ELEMENTS_VS_DDIC within SAP class /BOBF/CL_CONF_CDS_LINK_CHECK. 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 /BOBF/CL_CONF_CDS_LINK_CHECK 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 _CHECK_ELEMENTS_VS_DDIC can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method _CHECK_ELEMENTS_VS_DDIC
.| Name | Type | Data Type | Description | Default Value |
| IO_CDS_VIEW | Importing | TYPE REF TO /BOBF/CL_CONF_CDS_VIEW | Represents a CDS view (including BO annotations) | |
| IT_DB_TABLE_COMPONENT | Importing | TYPE DD03TTYP | Table Type for Structure DD03P | |
| IV_DB_TABLE | Importing | TYPE TABNAME16 | Table name, 16 characters | |
| IO_CDS_ENTITY | Importing | TYPE REF TO /BOBF/IF_CONF_CDS_ENTITY | ||
| IT_DB_TABLE_COMPONENT | Importing | TYPE DD03TTYP | ||
| IV_DB_TABLE | Importing | TYPE TABNAME |
Exceptions of Method _CHECK_ELEMENTS_VS_DDIC
/BOBF/CX_CONF_CDS_LINK -Example ABAP coding
DATA: lo_class TYPE REF TO /BOBF/CL_CONF_CDS_LINK_CHECK.
DATA: lv_IO_CDS_VIEW TYPE /BOBF/CL_CONF_CDS_VIEW,
lv_IT_DB_TABLE_COMPONENT TYPE DD03TTYP,
lv_IV_DB_TABLE TYPE TABNAME16,
lv_IO_CDS_ENTITY TYPE /BOBF/IF_CONF_CDS_ENTITY,
lv_IT_DB_TABLE_COMPONENT TYPE DD03TTYP,
lv_IV_DB_TABLE TYPE TABNAME,
lv_other TYPE c.
CALL METHOD lo_class=>_CHECK_ELEMENTS_VS_DDIC(
EXPORTING
IO_CDS_VIEW = lv_IO_CDS_VIEW
IT_DB_TABLE_COMPONENT = lv_IT_DB_TABLE_COMPONENT
IV_DB_TABLE = lv_IV_DB_TABLE
IO_CDS_ENTITY = lv_IO_CDS_ENTITY
IT_DB_TABLE_COMPONENT = lv_IT_DB_TABLE_COMPONENT
IV_DB_TABLE = lv_IV_DB_TABLE ).
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