I_PrepaymentDistrChnlText

DDL: I_PREPAYMENTDISTRCHNLTEXT SQL: ISDPPADISTRCHNLT Type: view BASIC

Distribution Channel - Text

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

Data Sources (1)

SourceAliasJoin Type
tvtwt tvtwt from

Associations (1)

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

Annotations (18)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey DistributionChannel view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Distribution Channel - Text view
VDM.viewType #BASIC view
Analytics.dataExtraction.enabled true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ISDPPADISTRCHNLT view
Search.searchable true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY DistributionChannel vtweg
KEY Language spras
DistributionChannelName
_Language _Language
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'DistributionChannel'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@EndUserText.label: 'Distribution Channel - Text'
@VDM.viewType: #BASIC
@Analytics.dataExtraction.enabled: true
@AccessControl.authorizationCheck:  #NOT_REQUIRED
@AbapCatalog.sqlViewName: 'ISDPPADISTRCHNLT'
@Search.searchable: true
@AbapCatalog.buffering.status: #ACTIVE
@AbapCatalog.buffering.type: #FULL
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.modelingPattern:           #LANGUAGE_DEPENDENT_TEXT
@ObjectModel.supportedCapabilities:  [  #SQL_DATA_SOURCE,
                                        #CDS_MODELING_DATA_SOURCE,
                                        #CDS_MODELING_ASSOCIATION_TARGET,
                                        #LANGUAGE_DEPENDENT_TEXT,
                                        #EXTRACTION_DATA_SOURCE,
                                        #SEARCHABLE_ENTITY   ]
define view I_PrepaymentDistrChnlText
  as select from tvtwt
  //association [0..1] to I_DistributionChannel as _DistributionChannel on $projection.DistributionChannel = _DistributionChannel.DistributionChannel

  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
  //association [0..*] to C_Dischannelvaluehelp as _Dischannel on $projection.DistributionChannel = _Dischannel.DistributionChannel


{
      //@ObjectModel.foreignKey.association: '_DistributionChannel'

  key vtweg                                                  as DistributionChannel,

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

      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
       @Semantics.text: true
      cast(vtext as distributionchannelname preserving type) as DistributionChannelName,
      
      //_Dischannel.SalesOrganization,

      //Associations

      // _DistributionChannel,

      //_Dischannel,

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