I_DistributionChannelValueHelp

DDL: I_DISTRIBUTIONCHANNELVALUEHELP SQL: IACMDISCHNLVH Type: view BASIC

Interface Layer for Distribution Channel

I_DistributionChannelValueHelp is a Basic CDS View that provides data about "Interface Layer for Distribution Channel" in SAP S/4HANA. It reads from 1 data source (I_SlsOrganizationDistrChnl) and exposes 4 fields with key fields SalesOrganization, DistributionChannel. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_SlsOrganizationDistrChnl I_SlsOrganizationDistrChnl from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_SalesOrganization _SalesOrganization $projection.SalesOrganization = _SalesOrganization.SalesOrganization

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IACMDISCHNLVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.sizeCategory #S view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
Search.searchable true view
ObjectModel.representativeKey DistributionChannel view
EndUserText.label Interface Layer for Distribution Channel view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY SalesOrganization SalesOrganization
KEY DistributionChannel DistributionChannel
DistributionChannelText
_SalesOrganization _SalesOrganization
@AbapCatalog.sqlViewName: 'IACMDISCHNLVH'
@AbapCatalog.compiler.compareFilter: true
--@AbapCatalog.preserveKey: true
@VDM.viewType: #BASIC
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType.sizeCategory: #S
@ClientHandling.type: #INHERITED
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Search.searchable: true
@ObjectModel.semanticKey: ['DistributionChannel']
@ObjectModel.representativeKey: 'DistributionChannel'
@ObjectModel.supportedCapabilities: [ #CDS_MODELING_DATA_SOURCE ]
@EndUserText.label: 'Interface Layer for Distribution Channel'

define view I_DistributionChannelValueHelp 
  as select from I_SlsOrganizationDistrChnl
  association [0..1] to I_SalesOrganization as _SalesOrganization on $projection.SalesOrganization = _SalesOrganization.SalesOrganization
  
 // association [0..*] to I_ACMDistributionChannelText as _DistributionChannelText on $projection.DistributionChannel = _DistributionChannelText.DistributionChannel

{   
      @ObjectModel.foreignKey.association: '_SalesOrganization'
  key SalesOrganization,
      @ObjectModel.text.element: ['DistributionChannelText']
      @Search.defaultSearchElement:true
  key DistributionChannel,
      @Semantics.text: true
      _DistributionChannel[1: DistributionChannel = DistributionChannel ]._Text[1: DistributionChannel = DistributionChannel and Language = $session.system_language ].DistributionChannelName as DistributionChannelText,
      _SalesOrganization

}