R_CndnContrTypeText

DDL: R_CNDNCONTRTYPETEXT Type: view BASIC

Condition Contract Type Text

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

Data Sources (1)

SourceAliasJoin Type
twcbcontrtypet twcbcontrtypet from

Associations (2)

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

Annotations (19)

NameValueLevelField
AbapCatalog.sqlViewName RWLFCOCOTYPETEXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 001 view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey CndnContrType 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
Analytics.internalName #LOCAL view
EndUserText.label Condition Contract Type Text view
Metadata.ignorePropagatedAnnotations false view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY CndnContrType twcbcontrtypet contract_type
KEY Language twcbcontrtypet lang
CndnContrTypeDesc
_CndnContrType _CndnContrType
_Language _Language
@AbapCatalog: {
  sqlViewName: 'RWLFCOCOTYPETEXT',
  compiler.compareFilter: true,
  buffering: {
    status: #ACTIVE,
    type: #GENERIC,
    numberOfKeyFields: 001
  },
  preserveKey: true
}
@VDM: {
  viewType: #BASIC,
  lifecycle.contract.type: #SAP_INTERNAL_API
}
@AccessControl: {
  authorizationCheck: #PRIVILEGED_ONLY,
  personalData.blocking: #('TRANSACTIONAL_DATA')
}
@ObjectModel: {
   dataCategory: #TEXT,
   representativeKey: 'CndnContrType',
   usageType: {
     dataClass:      #CUSTOMIZING,
     serviceQuality: #B,
     sizeCategory:   #S
   }
}
@ClientHandling: {
     type: #INHERITED,
     algorithm: #SESSION_VARIABLE
}
@Analytics: {
    internalName: #LOCAL
}
@EndUserText.label: 'Condition Contract Type Text'
@Metadata.ignorePropagatedAnnotations: false //!


define view R_CndnContrTypeText
  as select from twcbcontrtypet

  association [0..1] to R_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'
      @Consumption: {
          valueHelpDefinition: [{ entity: { name: 'I_CndnContrTypeStdVH', element: 'CndnContrType' } }]
        }
  key twcbcontrtypet.contract_type                                          as CndnContrType,

      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key twcbcontrtypet.lang                                                   as Language,

      @Semantics.text: true
      cast( twcbcontrtypet.text as wcb_contract_type_desc preserving type ) as CndnContrTypeDesc,

      //Associations

      _CndnContrType,
      _Language
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TWCBCONTRTYPET"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"R_CNDNCONTRTYPE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/