P_LatestProductionRoutingVers

DDL: P_LATESTPRODUCTIONROUTINGVERS Type: view_entity COMPOSITE Package: MPE_PLAN_RTG_VERS

MPE Action

P_LatestProductionRoutingVers is a Composite CDS View that provides data about "MPE Action" in SAP S/4HANA. It reads from 1 data source (I_BillOfOperationsVersion) and exposes 4 fields with key fields BillOfOperationsType, BillOfOperationsGroup, BillOfOperationsVariant. Part of development package MPE_PLAN_RTG_VERS.

Data Sources (1)

SourceAliasJoin Type
I_BillOfOperationsVersion ProdnRtgVersion from

Annotations (3)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.private true view
VDM.viewType #COMPOSITE view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY BillOfOperationsType I_BillOfOperationsVersion BillOfOperationsType Task List Type
KEY BillOfOperationsGroup I_BillOfOperationsVersion BillOfOperationsGroup Group
KEY BillOfOperationsVariant I_BillOfOperationsVersion BillOfOperationsVariant Group Counter
CreationDateTime

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 P_LatestProductionRoutingVers.
-- 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 P_LatestProductionRoutingVers AS
SELECT
  ProdnRtgVersion.BillOfOperationsType AS BillOfOperationsType,
  ProdnRtgVersion.BillOfOperationsGroup AS BillOfOperationsGroup,
  ProdnRtgVersion.BillOfOperationsVariant AS BillOfOperationsVariant,
  max(ProdnRtgVersion.CreationDateTime) AS CreationDateTime
FROM I_BillOfOperationsVersion AS ProdnRtgVersion
;