A_ProductionRoutingMatlAssgmt

DDL: A_PRODUCTIONROUTINGMATLASSGMT Type: view_entity CONSUMPTION

Material Assignment

A_ProductionRoutingMatlAssgmt is a Consumption CDS View that provides data about "Material Assignment" in SAP S/4HANA. It reads from 1 data source (I_ProdnRoutingMatlAssgmtTP) and exposes 15 fields with key fields Product, Plant, ProductionRoutingGroup, ProductionRouting, ProductionRoutingMatlAssgmt. It is exposed through 1 OData service (API_PRODUCTIONROUTING).

Data Sources (1)

SourceAliasJoin Type
I_ProdnRoutingMatlAssgmtTP I_ProdnRoutingMatlAssgmtTP projection

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Material Assignment view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view

OData Services (1)

ServiceBindingVersionContractRelease
API_PRODUCTIONROUTING API_PRODUCTION_ROUTING V2 C2 C1

Fields (15)

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

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