I_ProdnRtgSubordOpToOperation

DDL: I_PRODNRTGSUBORDOPTOOPERATION Type: view_entity COMPOSITE Package: VDM_PP_MD_RTG

Prodn Rtg Subperation to Operation

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

Data Sources (4)

SourceAliasJoin Type
I_MfgBillOfOperationsChgSt Header inner
I_ProductionRoutingOperation Operation inner
I_MfgBOOSequenceChangeState Sequence inner
I_ProductionRoutingSubOp SubOp from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Prodn Rtg Subperation to Operation 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_ProductionRoutingSubOp BillOfOperationsGroup Group
KEY ProductionRouting I_ProductionRoutingSubOp BillOfOperationsVariant Group Counter
KEY ProductionRoutingSequence I_ProductionRoutingSubOp BillOfOperationsSequence Sequence
KEY ProductionRoutingOpIntID I_ProductionRoutingSubOp BOOOperationInternalID Task list node
KEY ProdnRtgSubOpIntVersion I_ProductionRoutingSubOp 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_ProdnRtgSubordOpToOperation.
-- 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_ProdnRtgSubordOpToOperation AS
SELECT
  SubOp.BillOfOperationsGroup AS ProductionRoutingGroup,
  SubOp.BillOfOperationsVariant AS ProductionRouting,
  SubOp.BillOfOperationsSequence AS ProductionRoutingSequence,
  SubOp.BOOOperationInternalID AS ProductionRoutingOpIntID,
  SubOp.BOOOpInternalVersionCounter AS ProdnRtgSubOpIntVersion,
  min(Operation.ValidityStartDate) AS ValidityStartDate,
  max(Operation.ValidityEndDate) AS ValidityEndDate
FROM I_ProductionRoutingSubOp AS SubOp
INNER JOIN I_ProductionRoutingOperation AS Operation ON /* join condition not captured in parsed metadata */
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 */
;