A_CnsldtnSegmentForElimT

DDL: A_CNSLDTNSEGMENTFORELIMT SQL: ACSSEGMENTTELIM Type: view COMPOSITE

Combined Segment for Elimination Text

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

Data Sources (1)

SourceAliasJoin Type
I_CnsldtnSegmentForElimT_2 I_CnsldtnSegmentForElimT_2 from

Associations (1)

CardinalityTargetAliasCondition
[0..1] A_CnsldtnSegmentForElim _CnsldtnSegmentForElim $projection.Segment = _CnsldtnSegmentForElim.Segment

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName ACSSEGMENTTELIM 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 #L view
ObjectModel.dataCategory #TEXT view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
EndUserText.label Combined Segment for Elimination Text view
OData.entitySet.name SegmentForElimText view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Segment Segment number
KEY Language Language Report Text Language
SegmentForElimText Segment Name
_CnsldtnSegmentForElim _CnsldtnSegmentForElim

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_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.
-- SQL view name: ACSSEGMENTTELIM

CREATE VIEW A_CnsldtnSegmentForElimT AS
SELECT
  cast(Segment as fincs_segment_elim preserving type) AS Segment,
  Language,
  cast(SegmentName as fincs_segment_elim_t preserving type) AS SegmentForElimText
FROM I_CnsldtnSegmentForElimT_2
LEFT OUTER JOIN A_CnsldtnSegmentForElim AS _CnsldtnSegmentForElim ON Segment = _CnsldtnSegmentForElim.Segment  -- association [0..1]
;