I_DistributionChannel

DDL: I_DISTRIBUTIONCHANNEL SQL: ISDDISTRCHANNEL Type: view BASIC Package: VDM_SD_MD_ORG

Distribution Channel

I_DistributionChannel is a Basic CDS View (Dimension) that provides data about "Distribution Channel" in SAP S/4HANA. It reads from 1 data source (tvtw) and exposes 4 fields with key field DistributionChannel. It has 2 associations to related views. It is exposed through 13 OData services (C_BILLGDOCREDACTED_SD, C_SALESORDERMANAGE_SD, UI_CREDITMEMOREQUESTMANAGE, ...). Part of development package VDM_SD_MD_ORG.

Data Sources (1)

SourceAliasJoin Type
tvtw tvtw from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_DistributionChannelText _Text $projection.DistributionChannel = _Text.DistributionChannel
[0..*] I_DistrChannelHierarchyNode _DistrChannelHierarchyNode $projection.DistributionChannel = _DistrChannelHierarchyNode.DistributionChannel

Annotations (20)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey DistributionChannel view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Distribution Channel view
Analytics.dataCategory #DIMENSION view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ISDDISTRCHANNEL 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
Analytics.dataExtraction.enabled true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.sapObjectNodeType.name DistributionChannel view
ObjectModel.objectIdentifier.oidElement DistributionChannelOID view

OData Services (13)

ServiceBindingVersionContractRelease
C_BILLGDOCREDACTED_SD C_BILLGDOCREDACTED V2 C1 NOT_RELEASED
C_SALESORDERMANAGE_SD C_SALESORDERMANAGE_SRV V4 C1 NOT_RELEASED
UI_CREDITMEMOREQUESTMANAGE UI_CREDITMEMOREQUESTMANAGE V4 C1 NOT_RELEASED
UI_CUSTOMERRETURNMANAGE UI_CUSTOMERRETURNMANAGE V4 C1 NOT_RELEASED
UI_DEBITMEMOREQUESTMANAGE UI_DEBITMEMOREQUESTMANAGE V4 C1 NOT_RELEASED
UI_INBOUNDDELIVERYMANAGE UI_INBOUNDDELIVERYMANAGE V4 C1 NOT_RELEASED
UI_PRELIMBILLINGDOCUMENT_F6990 UI_PRELIMBILLINGDOCUMENT_F6990 V4 C1 NOT_RELEASED
UI_RFM_PRVSNLSLSCONTR UI_RFM_PRVSNLSLSCONTR V2 C1 NOT_RELEASED
UI_RFM_SLSORD_PRGS_MONITOR UI_RFM_SLSORD_PRGS_MONITOR V2 C1 NOT_RELEASED
UI_SALESCONTRACTMANAGE UI_SALESCONTRACTMANAGE V4 C1 NOT_RELEASED
UI_SALESDOCUMENTMANAGE UI_SALESDOCUMENTMANAGE V4 C1 NOT_RELEASED
UI_SALESQUOTATIONMANAGE UI_SALESQUOTATIONMANAGE V4 C1 NOT_RELEASED
UI_SLSORDERWITHOUTCHARGEMANAGE UI_SLSORDERWITHOUTCHARGEMANAGE V4 C1 NOT_RELEASED

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY DistributionChannel vtweg
DistributionChannelOID
_DistrChannelHierarchyNode _DistrChannelHierarchyNode
_Text _Text
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'DistributionChannel'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@EndUserText.label: 'Distribution Channel'
@Analytics.dataCategory: #DIMENSION
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck:  #NOT_REQUIRED
@AbapCatalog.sqlViewName: 'ISDDISTRCHANNEL'
@Search.searchable: true
@AbapCatalog.buffering.status: #ACTIVE
@AbapCatalog.buffering.type: #FULL
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@Metadata.ignorePropagatedAnnotations: true
@Analytics.dataExtraction.enabled: true

@ObjectModel.modelingPattern:           #ANALYTICAL_DIMENSION
@ObjectModel.supportedCapabilities:  [  #SQL_DATA_SOURCE,
                                        #CDS_MODELING_DATA_SOURCE,
                                        #CDS_MODELING_ASSOCIATION_TARGET,
                                        #ANALYTICAL_DIMENSION,
                                        #SEARCHABLE_ENTITY,
                                        #EXTRACTION_DATA_SOURCE  ]

@ObjectModel.alternativeKey: [{ id: 'OID', uniqueness: #UNIQUE, element: ['DistributionChannelOID'] }]
@ObjectModel.sapObjectNodeType.name:'DistributionChannel'
@ObjectModel.objectIdentifier.oidElement:'DistributionChannelOID'

define view I_DistributionChannel
  as select from           tvtw
  association [0..*] to I_DistributionChannelText   as _Text                      on $projection.DistributionChannel = _Text.DistributionChannel
  association [0..*] to I_DistrChannelHierarchyNode as _DistrChannelHierarchyNode on $projection.DistributionChannel = _DistrChannelHierarchyNode.DistributionChannel

{
      @Search.defaultSearchElement: true
      @Search.ranking: #HIGH
      @Search.fuzzinessThreshold: 0.8
      @ObjectModel.text.association: '_Text'
      @ObjectModel.hierarchy.association: '_DistrChannelHierarchyNode'
  key vtweg as DistributionChannel,

      @ObjectModel.filter.enabled: false
      @ObjectModel.sort.enabled: false
      cast( vtweg as distributionchannel_oid ) as DistributionChannelOID,
      
      _DistrChannelHierarchyNode,
      _Text
};