P_PMRPSimlnTopLvlDmndConst1

DDL: P_PMRPSIMLNTOPLVLDMNDCONST1 SQL: PPMRSMTLDC1 Type: view COMPOSITE

P_PMRPSimlnTopLvlDmndConst1 is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (P_PMRPReceiptBucketConstraint) and exposes 32 fields with key fields PMRPSimulation, PMRPFlexibleConstraint, BucketInternalID, TopLevelDemandInternalID.

Data Sources (1)

SourceAliasJoin Type
P_PMRPReceiptBucketConstraint P_PMRPReceiptBucketConstraint from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PPMRSMTLDC1 view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
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.
-- SQL view name: PPMRSMTLDC1

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
;