A_CnsldtnPartnerSegmentT

DDL: A_CNSLDTNPARTNERSEGMENTT Type: view COMPOSITE

Combined Partner Segment - Text

A_CnsldtnPartnerSegmentT is a Composite CDS View that provides data about "Combined Partner Segment - Text" in SAP S/4HANA. It reads from 1 data source (I_CnsldtnSegmentT) and exposes 4 fields with key fields Language, Segment. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_CnsldtnSegmentT I_CnsldtnSegmentT from

Associations (1)

CardinalityTargetAliasCondition
[0..1] A_CnsldtnPartnerSegment _CnsldtnPartnerSegment $projection.Segment = _CnsldtnPartnerSegment.Segment

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName ACSPARTSEGMENTT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED 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
ObjectModel.dataCategory #TEXT view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
VDM.viewType #COMPOSITE view
EndUserText.label Combined Partner Segment - Text view
OData.entitySet.name PartnerSegmentText view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language Language Report Text Language
KEY Segment Segment number
PartnerSegmentText Segment Name
_CnsldtnPartnerSegment _CnsldtnPartnerSegment

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_CnsldtnPartnerSegmentT.
-- 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 A_CnsldtnPartnerSegmentT AS
SELECT
  Language,
  cast(Segment as fincs_psegment preserving type ) AS Segment,
  cast(SegmentName as fincs_psegment_t preserving type) AS PartnerSegmentText
FROM I_CnsldtnSegmentT
LEFT OUTER JOIN A_CnsldtnPartnerSegment AS _CnsldtnPartnerSegment ON Segment = _CnsldtnPartnerSegment.Segment  -- association [0..1]
;