I_BillOfOperationsDescription

DDL: I_BILLOFOPERATIONSDESCRIPTION Type: view_entity BASIC

Latest routing description per task list

I_BillOfOperationsDescription is a Basic CDS View that provides data about "Latest routing description per task list" in SAP S/4HANA. It reads from 1 data source (plko) and exposes 4 fields with key fields BillOfOperationsType, BillOfOperationsGroup, BillOfOperationsVariant. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
plko H from

Associations (1)

CardinalityTargetAliasCondition
[0..1] plko _Higher _Higher.plnty = H.plnty and _Higher.plnnr = H.plnnr and _Higher.plnal = H.plnal and _Higher.loekz = '' and _Higher.parkz <> 'X' and ( _Higher.aedat > H.aedat or (_Higher.aedat = H.aedat and _Higher.zaehl > H.zaehl) )

Annotations (6)

NameValueLevelField
EndUserText.label Latest routing description per task list view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MIXED view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY BillOfOperationsType plko plnty Task List Type
KEY BillOfOperationsGroup plko plnnr Task List Group
KEY BillOfOperationsVariant plko plnal Referenced BOO Variant
BillOfOperationsDesc plko ktext 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 I_BillOfOperationsDescription.
-- 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_BillOfOperationsDescription AS
SELECT
  H.plnty AS BillOfOperationsType,
  H.plnnr AS BillOfOperationsGroup,
  H.plnal AS BillOfOperationsVariant,
  H.ktext AS BillOfOperationsDesc
FROM plko AS H
LEFT OUTER JOIN plko AS _Higher ON _Higher.plnty = H.plnty AND _Higher.plnnr = H.plnnr AND _Higher.plnal = H.plnal AND _Higher.loekz = '' AND _Higher.parkz <> 'X' AND ( _Higher.aedat > H.aedat OR (_Higher.aedat = H.aedat AND _Higher.zaehl > H.zaehl) )  -- association [0..1]
;