A_SegmentText

DDL: A_SEGMENTTEXT SQL: AFISEGMENTTEXT Type: view BASIC

API Segment Text

A_SegmentText is a Basic CDS View that provides data about "API Segment Text" in SAP S/4HANA. It reads from 1 data source (I_SegmentText) and exposes 4 fields with key fields Language, Segment. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_SegmentText I_SegmentText from

Associations (1)

CardinalityTargetAliasCondition
[1..1] A_Segment _Segment $projection.Segment = _Segment.Segment

Annotations (11)

NameValueLevelField
EndUserText.label API Segment Text view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
AbapCatalog.sqlViewName AFISEGMENTTEXT view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #CHECK view
AbapCatalog.compiler.compareFilter true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language Language Report Text Language
KEY Segment Segment Segment number
SegmentName SegmentName Segment Name
_Segment _Segment

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_SegmentText.
-- 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: AFISEGMENTTEXT

CREATE VIEW A_SegmentText AS
SELECT
  Language,
  Segment,
  SegmentName
FROM I_SegmentText
LEFT OUTER JOIN A_Segment AS _Segment ON Segment = _Segment.Segment  -- association [1..1]
;