I_ABOPSegmentSort

DDL: I_ABOPSEGMENTSORT Type: view_entity BASIC Package: ATP_BOP_SETUP_VDM

ABOP Segment Sort

I_ABOPSegmentSort is a Basic CDS View that provides data about "ABOP Segment Sort" in SAP S/4HANA. It reads from 1 data source (atp_bop_seg_sort) and exposes 10 fields with key field ABOPSegmentSortUUID. It has 2 associations to related views. Part of development package ATP_BOP_SETUP_VDM.

Data Sources (1)

SourceAliasJoin Type
atp_bop_seg_sort atp_bop_seg_sort from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_ABOPSegment _Segment $projection.ABOPSegmentUUID = _Segment.ABOPSegmentUUID
[0..1] I_ABOPCustomSort _CustomSort $projection.ABOPCustomSortUUID = _CustomSort.ABOPCustomSortUUID

Annotations (9)

NameValueLevelField
EndUserText.label ABOP Segment Sort view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey ABOPSegmentSortUUID view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
Analytics.technicalName IABOPSEGSORT view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY ABOPSegmentSortUUID abopsegmentsortuuid Segment Sorter UUID
ABOPSegmentUUID abopsegmentuuid BOP Segment UUID
ABOPSortAttribute abopsortattribute Sort Attribute
ABOPSortAttributeFldPathUUID abopsortattributefldpathuuid Product Allocation Characteristic Catalog Path UUID
ABOPSortAttributeFldPathIntID abopsortattributefldpathintid Catalog Path Internal ID
ABOPSortDirection abopsortdirection Sort Direction
ABOPSortAttributeSequence abopsortattributesequence Sort Attribute Seq.
ABOPCustomSortUUID abopcustomsortuuid Cust. Sort Seq. UUID
_Segment _Segment
_CustomSort _CustomSort

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_ABOPSegmentSort.
-- 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 I_ABOPSegmentSort AS
SELECT
  ABOPSegmentSortUUID,
  ABOPSegmentUUID,
  ABOPSortAttribute,
  ABOPSortAttributeFldPathUUID,
  ABOPSortAttributeFldPathIntID,
  ABOPSortDirection,
  ABOPSortAttributeSequence,
  ABOPCustomSortUUID
FROM atp_bop_seg_sort
LEFT OUTER JOIN I_ABOPSegment AS _Segment ON ABOPSegmentUUID = _Segment.ABOPSegmentUUID  -- association [1..1]
LEFT OUTER JOIN I_ABOPCustomSort AS _CustomSort ON ABOPCustomSortUUID = _CustomSort.ABOPCustomSortUUID  -- association [0..1]
;