C_ABOPSegmentTextTP

DDL: C_ABOPSEGMENTTEXTTP SQL: CABOPSEGMENTTTP Type: view CONSUMPTION

BOP Segment Txt Transactional Processing

C_ABOPSegmentTextTP is a Consumption CDS View that provides data about "BOP Segment Txt Transactional Processing" in SAP S/4HANA. It reads from 1 data source (I_ABOPSegmentTextTP) and exposes 6 fields with key fields ABOPSegmentUUID, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_ABOPSegmentTextTP I_ABOPSegmentTextTP from

Associations (1)

CardinalityTargetAliasCondition
[1..1] C_ABOPSegmentTP _Segment $projection.ABOPSegmentUUID = _Segment.ABOPSegmentUUID

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName CABOPSEGMENTTTP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
Search.searchable true view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey ABOPSegmentUUID view
ObjectModel.transactionalProcessingDelegated true view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
EndUserText.label BOP Segment Txt Transactional Processing 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
_Language _Language
_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 C_ABOPSegmentTextTP.
-- 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: CABOPSEGMENTTTP

CREATE VIEW C_ABOPSegmentTextTP AS
SELECT
  ABOPSegmentUUID,
  Language,
  ABOPSegmentDescription,
  ABOPSegmentDescriptionUUID
FROM I_ABOPSegmentTextTP
LEFT OUTER JOIN C_ABOPSegmentTP AS _Segment ON ABOPSegmentUUID = _Segment.ABOPSegmentUUID  -- association [1..1]
;