I_SlsOrganizationDistrChnl

DDL: I_SLSORGANIZATIONDISTRCHNL SQL: ISDSLSLSORGDISCH Type: view BASIC

Distribution Channel for Sales Org

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

Data Sources (1)

SourceAliasJoin Type
tvkov tvkov from

Associations (2)

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

Annotations (15)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #ORGANIZATIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Distribution Channel for Sales Org view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ISDSLSLSORGDISCH 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

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY SalesOrganization vkorg
KEY DistributionChannel vtweg
ReferenceDistributionChannel vtwku
ReferenceStore vlgfi
_SalesOrganization _SalesOrganization
_DistributionChannel _DistributionChannel
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #ORGANIZATIONAL
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@EndUserText.label: 'Distribution Channel for Sales Org'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.sqlViewName: 'ISDSLSLSORGDISCH'
@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.supportedCapabilities:  [  #SQL_DATA_SOURCE,
                                        #CDS_MODELING_DATA_SOURCE,
                                        #CDS_MODELING_ASSOCIATION_TARGET,
                                        #SEARCHABLE_ENTITY,
                                        #EXTRACTION_DATA_SOURCE  ]
define view I_SlsOrganizationDistrChnl
  as select from tvkov

  association [0..1] to I_SalesOrganization   as _SalesOrganization   on $projection.SalesOrganization = _SalesOrganization.SalesOrganization
  association [0..1] to I_DistributionChannel as _DistributionChannel on $projection.DistributionChannel = _DistributionChannel.DistributionChannel
{

      @ObjectModel.foreignKey.association: '_SalesOrganization'
      @Search.defaultSearchElement: true
      @Search.ranking: #HIGH
  key vkorg as SalesOrganization,

      @ObjectModel.foreignKey.association: '_DistributionChannel'
      @Search.defaultSearchElement: true
      @Search.ranking: #HIGH
  key vtweg as DistributionChannel,

      vtwku as ReferenceDistributionChannel,

      vlgfi as ReferenceStore,

      //Associations

      _SalesOrganization,
      _DistributionChannel
};
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TVKOV"
],
"ASSOCIATED":
[
"I_DISTRIBUTIONCHANNEL",
"I_SALESORGANIZATION"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/