P_PMRPSimlnReceiptByBucket

DDL: P_PMRPSIMLNRECEIPTBYBUCKET Type: view_entity COMPOSITE

P_PMRPSimlnReceiptByBucket is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (I_PMRPSimlnReceiptBucketBasic) and exposes 16 fields with key fields PMRPSimulation, ReceiptInternalID, BucketInternalID.

Data Sources (1)

SourceAliasJoin Type
I_PMRPSimlnReceiptBucketBasic I_PMRPSimlnReceiptBucketBasic from

Annotations (6)

NameValueLevelField
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #COMPOSITE view
VDM.private true view

Fields (16)

KeyFieldSource TableSource FieldDescription
KEY PMRPSimulation PMRPSimulation Simulation ID
KEY ReceiptInternalID ReceiptInternalID Receipt ID
KEY BucketInternalID BucketInternalID Bucket ID
Product Product Product Sold
Plant Plant Valuation Area
MRPArea MRPArea MRP Area
PMRPSourceOfSupplyInternalID PMRPSourceOfSupplyInternalID Source of Supply ID
PMRPReceiptBucketQuantity PMRPReceiptBucketQuantity
UnitOfMeasure PMRPConstraintBaseUnit
TopLevelDemandInternalID TopLevelDemandInternalID Top-Level Demand ID
PMRPNmbrOfWrkgDaysInBucket PMRPNmbrOfWrkgDaysInBucket
PMRPNmbrOfWrkgDaysOnSrceOfSup PMRPNmbrOfWrkgDaysOnSrceOfSup
_PMRPSimulation _PMRPSimulation
_Receipt _Receipt
_TopLevelDemand _TopLevelDemand
_UnitOfMeasure _UnitOfMeasure

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_PMRPSimlnReceiptByBucket.
-- 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_PMRPSimlnReceiptByBucket AS
SELECT
  PMRPSimulation,
  ReceiptInternalID,
  BucketInternalID,
  Product,
  Plant,
  MRPArea,
  PMRPSourceOfSupplyInternalID,
  PMRPReceiptBucketQuantity,
  PMRPConstraintBaseUnit AS UnitOfMeasure,
  TopLevelDemandInternalID,
  PMRPNmbrOfWrkgDaysInBucket,
  PMRPNmbrOfWrkgDaysOnSrceOfSup
FROM I_PMRPSimlnReceiptBucketBasic
;