I_ABOPSegmentText

DDL: I_ABOPSEGMENTTEXT SQL: IABOPSEGMENT_T Type: view BASIC

ABOP Segment Text

I_ABOPSegmentText is a Basic CDS View that provides data about "ABOP Segment Text" in SAP S/4HANA. It reads from 1 data source (atp_bop_segt) and exposes 6 fields with key fields ABOPSegmentUUID, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
atp_bop_segt atp_bop_segt from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[1..1] I_ABOPSegment _Segment $projection.ABOPSegmentUUID = _Segment.ABOPSegmentUUID

Annotations (12)

NameValueLevelField
EndUserText.label ABOP Segment Text view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName IABOPSEGMENT_T view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey ABOPSegmentUUID view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
Search.searchable true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ABOPSegmentUUID abopsegmentuuid BOP Segment UUID
KEY Language language Report Text Language
ABOPSegmentDescription abopsegmentdescription Segment Description
ABOPSegmentDescriptionUUID abopsegmentdescriptionuuid Segment Desc. UUID
_Segment _Segment
_Language _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 I_ABOPSegmentText.
-- 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: IABOPSEGMENT_T

CREATE VIEW I_ABOPSegmentText AS
SELECT
  ABOPSegmentUUID,
  Language,
  ABOPSegmentDescription,
  ABOPSegmentDescriptionUUID
FROM atp_bop_segt
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
LEFT OUTER JOIN I_ABOPSegment AS _Segment ON ABOPSegmentUUID = _Segment.ABOPSegmentUUID  -- association [1..1]
;