R_CnsldtnDistrChannelTextTP

DDL: R_CNSLDTNDISTRCHANNELTEXTTP Type: view_entity TRANSACTIONAL

Cnsldtn Distribution Channel - Text TP

R_CnsldtnDistrChannelTextTP is a Transactional CDS View that provides data about "Cnsldtn Distribution Channel - Text TP" in SAP S/4HANA. It reads from 1 data source (I_CnsldtnDistributionChannelT) and exposes 6 fields with key fields Language, DistributionChannel. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_CnsldtnDistributionChannelT _Text from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_Language _Language $projection.Language = _Language.Language

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #TRANSACTIONAL view
EndUserText.label Cnsldtn Distribution Channel - Text TP view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Language
KEY DistributionChannel
DistributionChannelName I_CnsldtnDistributionChannelT DistributionChannelName
CnsldtnIsAdditionalMasterData I_CnsldtnDistributionChannelT CnsldtnIsAdditionalMasterData
_DistributionChannel _DistributionChannel
_Language _Language
@AccessControl: {
  authorizationCheck: #MANDATORY
}
@Metadata: {
  ignorePropagatedAnnotations: true
}
@ObjectModel: {
//  sapObjectNodeType:{

//    name: 'CnsldtnDistributionChannelText'

//  },

  dataCategory: #TEXT,
  usageType: {
    dataClass: #MASTER,
    serviceQuality: #C,
    sizeCategory: #S
  }
}
@VDM: {
  lifecycle.contract.type: #SAP_INTERNAL_API,
  viewType: #TRANSACTIONAL
}
@EndUserText.label: 'Cnsldtn Distribution Channel - Text TP'
define view entity R_CnsldtnDistrChannelTextTP
  as select from I_CnsldtnDistributionChannelT as _Text

  /* associations for transactional processing */
  association        to parent R_CnsldtnDistributionChannelTP as _DistributionChannel on $projection.DistributionChannel = _DistributionChannel.DistributionChannel

  /* associations */
  association [1..1] to I_Language                            as _Language            on $projection.Language = _Language.Language

{
      @Semantics.language
  key cast ( _Text.Language as spras preserving type )                                as Language,

  key cast ( _Text.DistributionChannel as fincs_distributionchannel preserving type ) as DistributionChannel,

      @Semantics.text
      _Text.DistributionChannelName,

      _Text.CnsldtnIsAdditionalMasterData,


      /* associations */
      _DistributionChannel,

      /* associations for text retrieval */
      _Language

}