P_ProdnRoutingMatlAssgmt

DDL: P_PRODNROUTINGMATLASSGMT Type: view_entity COMPOSITE Package: VDM_PP_MD_RTG

Production Routing Material Assignment

P_ProdnRoutingMatlAssgmt is a Composite CDS View that provides data about "Production Routing Material Assignment" in SAP S/4HANA. It reads from 1 data source (I_ProdnRoutingMatlAssgmtTP) and exposes 16 fields with key fields Product, Plant, ProductionRoutingGroup, ProductionRouting, ProductionRoutingMatlAssgmt. Part of development package VDM_PP_MD_RTG.

Data Sources (1)

SourceAliasJoin Type
I_ProdnRoutingMatlAssgmtTP I_ProdnRoutingMatlAssgmtTP from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Production Routing Material Assignment view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #COMPOSITE view
VDM.private true view

Fields (16)

KeyFieldSource TableSource FieldDescription
KEY Product Product Product Sold
KEY Plant Plant Valuation Area
KEY ProductionRoutingGroup ProductionRoutingGroup Group
KEY ProductionRouting ProductionRouting Group Counter
KEY ProductionRoutingMatlAssgmt ProductionRoutingMatlAssgmt
KEY ProductionRtgMatlAssgmtIntVers ProductionRtgMatlAssgmtIntVers
CreationDate CreationDate Time Stamp
CreatedByUser CreatedByUser User Name
LastChangeDate LastChangeDate Time Stamp
LastChangedByUser LastChangedByUser User Name
ValidityStartDate ValidityStartDate Validity Start Date
ValidityEndDate ValidityEndDate ValidTo
ChangeNumber ChangeNumber Change Number
ChangedDateTime ChangedDateTime Time Stamp
_Header _Header
_ProdnRtgTP _ProdnRtgTP

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_ProdnRoutingMatlAssgmt.
-- 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_ProdnRoutingMatlAssgmt AS
SELECT
  Product,
  Plant,
  ProductionRoutingGroup,
  ProductionRouting,
  ProductionRoutingMatlAssgmt,
  ProductionRtgMatlAssgmtIntVers,
  CreationDate,
  CreatedByUser,
  LastChangeDate,
  LastChangedByUser,
  ValidityStartDate,
  ValidityEndDate,
  ChangeNumber,
  ChangedDateTime
FROM I_ProdnRoutingMatlAssgmtTP
;