P_CnsldtnSegmentForElimT

DDL: P_CNSLDTNSEGMENTFORELIMT Type: view COMPOSITE

P_CnsldtnSegmentForElimT is a Composite CDS View in SAP S/4HANA. It reads from 3 data sources (I_CnsldtnAddlCharacteristic, I_CnsldtnSegmentT, I_CnsldtnSegmentElimNodeT) and exposes 6 fields with key fields Language, Segment.

Data Sources (3)

SourceAliasJoin Type
I_CnsldtnAddlCharacteristic _addlcharc inner
I_CnsldtnSegmentT _SegmentT union_all
I_CnsldtnSegmentElimNodeT I_CnsldtnSegmentElimNodeT from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PCSSGMTFORELIMT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
VDM.viewType #COMPOSITE view
VDM.private true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Language Language Report Text Language
KEY Segment Segment Segment number
SegmentName SegmentName Segment Name
Language Report Text Language
SegmentName I_CnsldtnSegmentT SegmentName Segment Name
_Language I_CnsldtnSegmentT _Language

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 P_CnsldtnSegmentForElimT.
-- 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 P_CnsldtnSegmentForElimT AS
SELECT
  Language,
  Segment,
  SegmentName,
  _SegmentT._Language AS _Language
FROM I_CnsldtnSegmentElimNodeT
INNER JOIN I_CnsldtnAddlCharacteristic AS _addlcharc ON /* join condition not captured in parsed metadata */
-- UNION ALL with additional select branch(es): I_CnsldtnSegmentT
;