I_ProdnRtgOperationToSequence

DDL: I_PRODNRTGOPERATIONTOSEQUENCE Type: view_entity COMPOSITE Package: VDM_PP_MD_RTG

Prodn Rtg Operation to Sequence

I_ProdnRtgOperationToSequence is a Composite CDS View that provides data about "Prodn Rtg Operation to Sequence" in SAP S/4HANA. It reads from 3 data sources (I_MfgBillOfOperationsChgSt, I_ProductionRoutingOperation, I_MfgBOOSequenceChangeState) and exposes 7 fields with key fields ProductionRoutingGroup, ProductionRouting, ProductionRoutingOpIntID, ProductionRoutingSequence, ProductionRoutingOpIntVersion. Part of development package VDM_PP_MD_RTG.

Data Sources (3)

SourceAliasJoin Type
I_MfgBillOfOperationsChgSt Header inner
I_ProductionRoutingOperation Operation from
I_MfgBOOSequenceChangeState Sequence inner

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Prodn Rtg Operation to Sequence view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #COMPOSITE view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY ProductionRoutingGroup I_ProductionRoutingOperation BillOfOperationsGroup Group
KEY ProductionRouting I_ProductionRoutingOperation BillOfOperationsVariant Group Counter
KEY ProductionRoutingOpIntID I_ProductionRoutingOperation BOOOperationInternalID Task list node
KEY ProductionRoutingSequence I_ProductionRoutingOperation BillOfOperationsSequence Sequence
KEY ProductionRoutingOpIntVersion I_ProductionRoutingOperation BOOOpInternalVersionCounter Counter
ValidityStartDate
ValidityEndDate

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_ProdnRtgOperationToSequence.
-- 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_ProdnRtgOperationToSequence AS
SELECT
  Operation.BillOfOperationsGroup AS ProductionRoutingGroup,
  Operation.BillOfOperationsVariant AS ProductionRouting,
  Operation.BOOOperationInternalID AS ProductionRoutingOpIntID,
  Operation.BillOfOperationsSequence AS ProductionRoutingSequence,
  Operation.BOOOpInternalVersionCounter AS ProductionRoutingOpIntVersion,
  min(Sequence.ValidityStartDate) AS ValidityStartDate,
  max(Sequence.ValidityEndDate) AS ValidityEndDate
FROM I_ProductionRoutingOperation AS Operation
INNER JOIN I_MfgBOOSequenceChangeState AS Sequence ON /* join condition not captured in parsed metadata */
INNER JOIN I_MfgBillOfOperationsChgSt AS Header ON /* join condition not captured in parsed metadata */
;