Vb_Core_Cds_Definition

DDL: VB_CORE_CDS_DEFINITION SQL: VBCORECDSDEF Type: view

View Browser Core CDS Definition

Vb_Core_Cds_Definition is a CDS View that provides data about "View Browser Core CDS Definition" in SAP S/4HANA. It reads from 1 data source (Dictionary_Definition) and exposes 7 fields with key fields SQLViewName, FieldName. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
Dictionary_Definition Dictionary_Definition from

Associations (1)

CardinalityTargetAliasCondition
[0..*] Data_Element_Text _Text $projection.DataElement = _Text.DataElement

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName VBCORECDSDEF view
EndUserText.label View Browser Core CDS Definition view
ObjectModel.usageType.serviceQuality #P view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY SQLViewName Dictionary_Definition ObjectName
KEY FieldName Dictionary_Definition FieldName
DataElement DataElement
DataType Dictionary_Definition DataType
FieldPosition FieldPosition
Length Length
_Text _Text
@AbapCatalog.sqlViewName: 'VBCORECDSDEF'
@EndUserText.label: 'View Browser Core CDS Definition'
@ObjectModel.usageType.serviceQuality:  #P
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
define view Vb_Core_Cds_Definition as select from Dictionary_Definition 

association [0..*] to Data_Element_Text as _Text on $projection.DataElement = _Text.DataElement {
  key Dictionary_Definition.ObjectName as SQLViewName, // ObjectName is CDSName now after CDS2.0 changes in Dictionary_Definition 

  key Dictionary_Definition.FieldName,
  fieldname_raw,
  DataElement,
  Dictionary_Definition.DataType,
  FieldPosition,
  Length,
  _Text
}