C_ABOPSegmentTextTP

DDL: C_ABOPSEGMENTTEXTTP Type: view_entity CONSUMPTION Package: ATP_BOP_SETUP_VDM

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. It is exposed through 1 OData service (ASQL_F2158). Part of development package ATP_BOP_SETUP_VDM.

Data Sources (1)

SourceAliasJoin Type
I_ABOPSegmentTextTP I_ABOPSegmentTextTP from

Associations (1)

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

Annotations (14)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED 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
Analytics.technicalName CABOPSEGMENTTTP view
EndUserText.label BOP Segment Txt Transactional Processing view

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F2158 ASQL_F2158 C2 NOT_RELEASED

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.

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]
;