I_CndnContrTypeText

DDL: I_CNDNCONTRTYPETEXT Type: view_entity BASIC Package: WCB_API_A2A_CONFIG_VDM

Condition Contract Type - Text

I_CndnContrTypeText is a Basic CDS View that provides data about "Condition Contract Type - Text" in SAP S/4HANA. It reads from 1 data source (R_CndnContrTypeText) and exposes 5 fields with key fields CndnContrType, Language. It has 2 associations to related views. Part of development package WCB_API_A2A_CONFIG_VDM.

Data Sources (1)

SourceAliasJoin Type
R_CndnContrTypeText R_CndnContrTypeText from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_CndnContrType _CndnContrType $projection.CndnContrType = _CndnContrType.CndnContrType
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (15)

NameValueLevelField
EndUserText.label Condition Contract Type - Text view
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey CndnContrType view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
Analytics.technicalName IWLFCOCOTYPETEXT view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
Search.searchable true view
Analytics.dataExtraction.enabled true view
Analytics.internalName #LOCAL view
Metadata.ignorePropagatedAnnotations true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY CndnContrType CndnContrType
KEY Language Language
CndnContrTypeDesc CndnContrTypeDesc
_CndnContrType _CndnContrType
_Language _Language
@EndUserText.label: 'Condition Contract Type - Text'
@AccessControl: {
  authorizationCheck: #MANDATORY,
  personalData.blocking: #('TRANSACTIONAL_DATA')
}
@ObjectModel: {
  dataCategory:          #TEXT,
  representativeKey:     'CndnContrType',
  modelingPattern:       #LANGUAGE_DEPENDENT_TEXT,
  supportedCapabilities: [ #LANGUAGE_DEPENDENT_TEXT,
                           #CDS_MODELING_ASSOCIATION_TARGET,
                           #SQL_DATA_SOURCE,
                           #CDS_MODELING_DATA_SOURCE,
                           #SEARCHABLE_ENTITY,
                           #EXTRACTION_DATA_SOURCE ],
  usageType: {
    dataClass:      #CUSTOMIZING,
    serviceQuality: #B,
    sizeCategory:   #S
  }
}
@Analytics.technicalName: 'IWLFCOCOTYPETEXT'
@VDM: {
  viewType: #BASIC,
  lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@Search.searchable: true
@Analytics: {
  dataExtraction.enabled: true,
  internalName: #LOCAL
}
@Metadata.ignorePropagatedAnnotations: true

define view entity I_CndnContrTypeText
  as select from R_CndnContrTypeText

  association [0..1] to I_CndnContrType as _CndnContrType on $projection.CndnContrType = _CndnContrType.CndnContrType
  association [0..1] to I_Language      as _Language      on $projection.Language = _Language.Language

{
      @ObjectModel.foreignKey.association: '_CndnContrType'
      @ObjectModel.text.element: ['CndnContrTypeDesc']
      @Consumption: {
        valueHelpDefinition: [{ entity: { name: 'I_CndnContrTypeStdVH', element: 'CndnContrType' } }]
      }
  key CndnContrType,
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key Language,
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #LOW
      @Semantics.text: true
      CndnContrTypeDesc,

      /* Associations */
      _CndnContrType,
      _Language
}