C_MRPDepdntResvnSourceMRPInfo

DDL: C_MRPDEPDNTRESVNSOURCEMRPINFO Type: view_entity CONSUMPTION Package: ODATA_PP_MRP

Resvn and Dpdnt Rqmts to Source MRP Info

C_MRPDepdntResvnSourceMRPInfo is a Consumption CDS View that provides data about "Resvn and Dpdnt Rqmts to Source MRP Info" in SAP S/4HANA. It reads from 1 data source (I_DepdntResvnQuickView) and exposes 6 fields with key fields Reservation, ReservationItem, RecordType. Part of development package ODATA_PP_MRP.

Data Sources (1)

SourceAliasJoin Type
I_DepdntResvnQuickView I_DepdntResvnQuickView from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Resvn and Dpdnt Rqmts to Source MRP Info view
Metadata.ignorePropagatedAnnotations true view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Reservation Reservation Reservation
KEY ReservationItem ReservationItem Reservation Item
KEY RecordType RecordType Reservation Record Type
MRPElementCategory RequirementType RequirementType
MRPElement Reservation
MRPElementItem

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 C_MRPDepdntResvnSourceMRPInfo.
-- 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 C_MRPDepdntResvnSourceMRPInfo AS
SELECT
  Reservation,
  ReservationItem,
  RecordType,
  RequirementType AS MRPElementCategory,
  cast( Reservation as pph_del12 ) AS MRPElement,
  cast( concat( '', ReservationItem ) as delps ) AS MRPElementItem
FROM I_DepdntResvnQuickView
;