C_PrepaymentDistrChnlVH

DDL: C_PREPAYMENTDISTRCHNLVH Type: view CONSUMPTION

Sales Org specific Distribution Channel

C_PrepaymentDistrChnlVH is a Consumption CDS View that provides data about "Sales Org specific Distribution Channel" in SAP S/4HANA. It reads from 1 data source (I_SlsOrganizationDistrChnl) and exposes 4 fields with key fields DistributionChannel, SalesOrganization. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_SlsOrganizationDistrChnl I_SlsOrganizationDistrChnl from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_PrepaymentDistrChnlText _Text $projection.DistributionChannel = _Text.DistributionChannel and _Text.Language = $session.system_language

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName CPPAISCHSORG view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Sales Org specific Distribution Channel view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
AbapCatalog.preserveKey true view
UI.headerInfo.typeName Distribution Channel view
UI.headerInfo.typeNamePlural Distribution Channels view
Search.searchable true view
Consumption.valueHelpDefault.fetchValues #AUTOMATICALLY_WHEN_DISPLAYED view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY DistributionChannel DistributionChannel
KEY SalesOrganization SalesOrganization
DistributionChannelName _Text DistributionChannelName
_Text _Text
@AbapCatalog: {
   sqlViewName: 'CPPAISCHSORG',
   compiler.compareFilter: true
}

//@ClientDependent: true

@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Sales Org specific Distribution Channel'
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM: {
  viewType: #CONSUMPTION
}
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@AbapCatalog.preserveKey:true
@UI.headerInfo:{
  typeName:       'Distribution Channel',
  typeNamePlural: 'Distribution Channels'
}

@Search.searchable: true

@Consumption.valueHelpDefault.fetchValues:#AUTOMATICALLY_WHEN_DISPLAYED

define view C_PrepaymentDistrChnlVH
  as select from I_SlsOrganizationDistrChnl
  association [0..1] to I_PrepaymentDistrChnlText as _Text on $projection.DistributionChannel = _Text.DistributionChannel
  and _Text.Language = $session.system_language
{
           @Search.fuzzinessThreshold: 0.8
           @Search.defaultSearchElement: true
  key      DistributionChannel,

           @Search.defaultSearchElement: true
  key      SalesOrganization,
           _Text.DistributionChannelName,
           _Text
}
where
  _Text.Language = $session.system_language
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_PREPAYMENTDISTRCHNLTEXT",
"I_SLSORGANIZATIONDISTRCHNL"
],
"ASSOCIATED":
[
"I_PREPAYMENTDISTRCHNLTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/