A_CnsldtnSegmentForElim

DDL: A_CNSLDTNSEGMENTFORELIM Type: view COMPOSITE

Combined Segment for Elimination

A_CnsldtnSegmentForElim is a Composite CDS View that provides data about "Combined Segment for Elimination" in SAP S/4HANA. It reads from 1 data source (I_CnsldtnSegmentForElim) and exposes 6 fields with key field Segment. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_CnsldtnSegmentForElim I_CnsldtnSegmentForElim from

Associations (2)

CardinalityTargetAliasCondition
[0..*] A_CnsldtnSegmentForElimT _CnsldtnSegmentForElimT $projection.Segment = _CnsldtnSegmentForElimT.Segment
[0..*] A_CnsldtnSegmentHierForElim _CnsldtnSegmentHierForElim $projection.MDHierType = _CnsldtnSegmentHierForElim.MDHierType

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ACSSEGMENTE view
AbapCatalog.compiler.compareFilter 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 #M view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
EndUserText.label Combined Segment for Elimination view
OData.entitySet.name SegmentForElimination view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Segment Segment Segment For Elimination
AdditionalMasterDataSource
MDHierType
HierarchyType
_CnsldtnSegmentForElimT _CnsldtnSegmentForElimT
_CnsldtnSegmentHierForElim _CnsldtnSegmentHierForElim

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_CnsldtnSegmentForElim.
-- 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_CnsldtnSegmentForElim AS
SELECT
  Segment,
  cast ( 'CNSLDTN' as fincs_md_source ) AS AdditionalMasterDataSource,
  cast ( 'CS01' as hrytype ) AS MDHierType,
  cast ( 'CS01' as hrytype ) AS HierarchyType
FROM I_CnsldtnSegmentForElim
LEFT OUTER JOIN A_CnsldtnSegmentForElimT AS _CnsldtnSegmentForElimT ON Segment = _CnsldtnSegmentForElimT.Segment  -- association [0..*]
LEFT OUTER JOIN A_CnsldtnSegmentHierForElim AS _CnsldtnSegmentHierForElim ON MDHierType = _CnsldtnSegmentHierForElim.MDHierType  -- association [0..*]
;