P_PMRPSimlnTopLvlDmndConst1

DDL: P_PMRPSIMLNTOPLVLDMNDCONST1 Type: view_entity COMPOSITE Package: PMRP_ENGINE

Top Level Demand enriched per Bucket with Constraint

P_PMRPSimlnTopLvlDmndConst1 is a Composite CDS View that provides data about "Top Level Demand enriched per Bucket with Constraint" in SAP S/4HANA. It reads from 1 data source (P_PMRPReceiptBucketConstraint) and exposes 32 fields with key fields PMRPSimulation, PMRPFlexibleConstraint, BucketInternalID, TopLevelDemandInternalID. Part of development package PMRP_ENGINE.

Data Sources (1)

SourceAliasJoin Type
P_PMRPReceiptBucketConstraint P_PMRPReceiptBucketConstraint from

Annotations (7)

NameValueLevelField
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MIXED view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #BLOCKED_DATA_INCLUDED view
VDM.viewType #COMPOSITE view
VDM.private true view

Fields (32)

KeyFieldSource TableSource FieldDescription
KEY PMRPSimulation PMRPSimulation Simulation ID
KEY PMRPFlexibleConstraint PMRPFlexibleConstraint Constraints ID
KEY BucketInternalID BucketInternalID Bucket ID
KEY TopLevelDemandInternalID TopLevelDemandInternalID Top-Level Demand ID
constraintdataPMRPSupplyGroup
PMRPSupplyGroupCategory PMRPSupplyGroupCategory Supply Group Cat
UnitOfMeasure PMRPConstraintBaseUnit
Supplier Supplier Supplier
ProductionLine ProductionLine Production Line
SupplyingPlant SupplyingPlant Supplying Plant
Product Product Product Sold
Plant Plant Valuation Area
MRPArea MRPArea MRP Area
PMRPBucketStartDate PMRPBucketStartDate
PMRPBucketEndDate PMRPBucketEndDate
TLDDataTopLevelProduct
TopLevelPlant TopLevelPlant
TopLevelMRPArea TopLevelMRPArea
TopLevelDemandUnitOfMeasure TopLevelDemandUnitOfMeasure
TopLvlDmndUnitOfMeasure TopLevelDemandUnitOfMeasure
TopLvlDmndRequiredQuantity TopLvlDmndRequiredQuantity
TopLvlDmndBucketID TopLvlDmndBucketID
PMRPReceiptBucketQuantity
PMRPTopLvlDmndQuantityFactor
PMRPConstraintTolerancePercent PMRPConstraintTolerancePercent
PMRPConstraintQtyInBaseUnit PMRPConstraintQtyInBaseUnit
PMRPConstraintIsDisregarded PMRPConstraintIsDisregarded
PMRPConstraintType PMRPConstraintType
PMRPConstraintCategory PMRPConstraintCategory
PMRPConstraintDeltaQuantity PMRPConstraintDeltaQuantity
PMRPConstraintIsViolated PMRPConstraintIsViolated
PMRPReferencePlan PMRPReferencePlan

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_PMRPSimlnTopLvlDmndConst1.
-- 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_PMRPSimlnTopLvlDmndConst1 AS
SELECT
  PMRPSimulation,
  PMRPFlexibleConstraint,
  BucketInternalID,
  TopLevelDemandInternalID,
  PMRPSupplyGroupCategory,
  PMRPConstraintBaseUnit AS UnitOfMeasure,
  Supplier,
  ProductionLine,
  SupplyingPlant,
  Product,
  Plant,
  MRPArea,
  PMRPBucketStartDate,
  PMRPBucketEndDate,
  TopLevelPlant,
  TopLevelMRPArea,
  TopLevelDemandUnitOfMeasure,
  TopLevelDemandUnitOfMeasure AS TopLvlDmndUnitOfMeasure,
  TopLvlDmndRequiredQuantity,
  TopLvlDmndBucketID,
  sum(PMRPRcptBcktQtyInCstrtUnit) AS PMRPReceiptBucketQuantity,
  sum(TopLevelDemandConstraintFactor) AS PMRPTopLvlDmndQuantityFactor,
  PMRPConstraintTolerancePercent,
  PMRPConstraintQtyInBaseUnit,
  PMRPConstraintIsDisregarded,
  PMRPConstraintType,
  PMRPConstraintCategory,
  PMRPConstraintDeltaQuantity,
  PMRPConstraintIsViolated,
  PMRPReferencePlan
FROM P_PMRPReceiptBucketConstraint
;