A_CnsldtnDistributionChnlT

DDL: A_CNSLDTNDISTRIBUTIONCHNLT SQL: ACSDISTRCHNLTEXT Type: view COMPOSITE

Combined Distribution Channel Text

A_CnsldtnDistributionChnlT is a Composite CDS View that provides data about "Combined Distribution Channel Text" in SAP S/4HANA. It reads from 1 data source (I_CnsldtnDistributionChannelT) and exposes 4 fields with key fields Language, DistributionChannel. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_CnsldtnDistributionChannelT _Source from

Associations (1)

CardinalityTargetAliasCondition
[0..1] A_CnsldtnDistributionChannel _CnsldtnDistributionChannel $projection.DistributionChannel = _CnsldtnDistributionChannel.DistributionChannel

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName ACSDISTRCHNLTEXT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Combined Distribution Channel Text view
VDM.viewType #COMPOSITE view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
OData.entitySet.name DistributionChannelText view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey DistributionChannel view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language I_CnsldtnDistributionChannelT Language Report Text Language
KEY DistributionChannel I_CnsldtnDistributionChannelT DistributionChannel RefDistCh-Cust/Mat.
DistributionChannelText
_CnsldtnDistributionChannel _CnsldtnDistributionChannel

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 A_CnsldtnDistributionChnlT.
-- 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.
-- SQL view name: ACSDISTRCHNLTEXT

CREATE VIEW A_CnsldtnDistributionChnlT AS
SELECT
  _Source.Language AS Language,
  _Source.DistributionChannel AS DistributionChannel,
  cast(_Source.AdditionalMasterDataText as fincs_vtweg_t preserving type) AS DistributionChannelText
FROM I_CnsldtnDistributionChannelT AS _Source
LEFT OUTER JOIN A_CnsldtnDistributionChannel AS _CnsldtnDistributionChannel ON DistributionChannel = _CnsldtnDistributionChannel.DistributionChannel  -- association [0..1]
;