A_Segment

DDL: A_SEGMENT SQL: AFISEGMENT Type: view BASIC

API Segment

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

Data Sources (1)

SourceAliasJoin Type
I_Segment I_Segment from

Associations (1)

CardinalityTargetAliasCondition
[0..*] A_SegmentText _Text $projection.Segment = _Text.Segment

Annotations (11)

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

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY Segment Segment Segment number
_Text _Text

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_Segment.
-- 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: AFISEGMENT

CREATE VIEW A_Segment AS
SELECT
  Segment
FROM I_Segment
LEFT OUTER JOIN A_SegmentText AS _Text ON Segment = _Text.Segment  -- association [0..*]
;