I_CndnContrTypeText

DDL: I_CNDNCONTRTYPETEXT Type: view BASIC

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.

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 (18)

NameValueLevelField
AbapCatalog.sqlViewName IWLFCOCOTYPETEXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
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
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
Search.searchable 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
@AbapCatalog: {
    sqlViewName: 'IWLFCOCOTYPETEXT',
    compiler.compareFilter: true,
    preserveKey: true
    }
@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 ],
    usageType: {
      dataClass:      #CUSTOMIZING,
      serviceQuality: #B,
      sizeCategory:   #S
      }
    }
@ClientHandling: {
    type: #INHERITED,
    algorithm: #SESSION_VARIABLE
    }
@VDM: {
    viewType: #BASIC,
    lifecycle.contract.type: #PUBLIC_LOCAL_API
    }
@Search.searchable: true
@Analytics: {
    internalName: #LOCAL
    }
@Metadata.ignorePropagatedAnnotations: true

define view 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
}