P_PMRPOutpQtyByBucketConstr

DDL: P_PMRPOUTPQTYBYBUCKETCONSTR Type: view_entity COMPOSITE Package: PMRP_ENGINE

Quantities by Bucket for Constraints

P_PMRPOutpQtyByBucketConstr is a Composite CDS View that provides data about "Quantities by Bucket for Constraints" in SAP S/4HANA. It reads from 1 data source (I_PMRPSimlnFlxblCstrtRcptBsc) and exposes 6 fields with key fields PMRPSimulation, PMRPFlexibleConstraint, BucketInternalID. Part of development package PMRP_ENGINE.

Data Sources (1)

SourceAliasJoin Type
I_PMRPSimlnFlxblCstrtRcptBsc I_PMRPSimlnFlxblCstrtRcptBsc 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 (6)

KeyFieldSource TableSource FieldDescription
KEY PMRPSimulation PMRPSimulation Simulation ID
KEY PMRPFlexibleConstraint PMRPFlexibleConstraint Constraints ID
KEY BucketInternalID BucketInternalID Bucket ID
PMRPConstraintBaseUnit PMRPConstraintBaseUnit
PMRPRcptBcktQtyInCstrtUnit
_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_PMRPOutpQtyByBucketConstr.
-- 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_PMRPOutpQtyByBucketConstr AS
SELECT
  PMRPSimulation,
  PMRPFlexibleConstraint,
  BucketInternalID,
  PMRPConstraintBaseUnit,
  sum(PMRPRcptBcktQtyInCstrtUnit) AS PMRPRcptBcktQtyInCstrtUnit
FROM I_PMRPSimlnFlxblCstrtRcptBsc
;