C_Dischannelvaluehelp

DDL: C_DISCHANNELVALUEHELP Type: view CONSUMPTION

Distribution Channel by Sales Org.

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

Data Sources (1)

SourceAliasJoin Type
I_SlsOrganizationDistrChnl SlsOrganizationDistrChnl from

Associations (1)

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

Annotations (14)

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

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY SalesOrganization I_SlsOrganizationDistrChnl SalesOrganization Sales Organization
KEY DistributionChannel I_SlsOrganizationDistrChnl DistributionChannel RefDistCh-Cust/Mat.
DistributionChannelName
_DistributionChannel I_SlsOrganizationDistrChnl _DistributionChannel
_SalesOrganization I_SlsOrganizationDistrChnl _SalesOrganization

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view C_Dischannelvaluehelp.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW C_Dischannelvaluehelp AS
SELECT
  SlsOrganizationDistrChnl.SalesOrganization AS SalesOrganization,
  SlsOrganizationDistrChnl.DistributionChannel AS DistributionChannel,
  _Text[1:Language=$session.system_language].DistributionChannelName AS DistributionChannelName,
  SlsOrganizationDistrChnl._DistributionChannel AS _DistributionChannel,
  SlsOrganizationDistrChnl._SalesOrganization AS _SalesOrganization
FROM I_SlsOrganizationDistrChnl AS SlsOrganizationDistrChnl
LEFT OUTER JOIN I_DistributionChannelText AS _Text ON DistributionChannel = _Text.DistributionChannel  -- association [0..*]
;