C_SupDmndOvwPgSupProtQ

DDL: C_SUPDMNDOVWPGSUPPROTQ Type: view CONSUMPTION

Query View for Supply Protection Details

C_SupDmndOvwPgSupProtQ is a Consumption CDS View that provides data about "Query View for Supply Protection Details" in SAP S/4HANA. It reads from 1 data source (I_SupDmndAllDocSupProtC) and exposes 36 fields with key field SupProtTimeBucketUUID. It has 11 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_SupDmndAllDocSupProtC Demand from

Associations (11)

CardinalityTargetAliasCondition
[0..1] I_ProductText _ProductText $projection.Material = _ProductText.Product and _ProductText.Language = $session.system_language
[0..1] I_ProductGroupText _ProductGroupText $projection.MaterialGroup = _ProductGroupText.MaterialGroup and _ProductGroupText.Language = $session.system_language
[0..1] I_ProductTypeText _ProductTypeText $projection.MaterialType = _ProductTypeText.ProductType and _ProductTypeText.Language = $session.system_language
[0..1] I_SalesOrganizationText _SalesOrgText $projection.SalesOrganization = _SalesOrgText.SalesOrganization and _SalesOrgText.Language = $session.system_language
[0..1] I_DistributionChannelText _DistrChnl $projection.DistributionChannel = _DistrChnl.DistributionChannel and _DistrChnl.Language = $session.system_language
[0..1] I_DivisionText _Divn $projection.Division = _Divn.Division and _Divn.Language = $session.system_language
[0..1] I_SalesDistrictText _SalesDist $projection.SalesDistrict = _SalesDist.SalesDistrict and _SalesDist.Language = $session.system_language
[0..1] I_Plant _Plant $projection.Plant = _Plant.Plant
[0..1] I_CompanyCode _CompanyCode $projection.CompanyCode = _CompanyCode.CompanyCode
[0..1] I_Customer _Customer $projection.Customer = _Customer.Customer
[0..1] I_SupDmndAllDocRqmtTypeT _RqmtText $projection.RequirementType = _RqmtText.RequirementType and _RqmtText.Language = $session.system_language

Annotations (12)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ClientHandling.type #INHERITED view
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
AbapCatalog.sqlViewName CSDOPSUPPROTQ view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XXL view
EndUserText.label Query View for Supply Protection Details view

Fields (36)

KeyFieldSource TableSource FieldDescription
KEY SupProtTimeBucketUUID SupProtTimeBucketUUID
RequirementType RequirementType Demand Type
ProductAvailabilityDate ProductAvailabilityDate Delivery Date
RequestedDeliveryDate RequestedDeliveryDate Requested Delivery Date
StartDate StartDate Valid From
EndDate EndDate Term to
SupProtProtectedQuantity SupProtProtectedQuantity Protected Quantity
SupProtConsumedQuantity SupProtConsumedQuantity Consumed Protected Quantity
ARunSupProtUnconsumedQty ARunSupProtUnconsumedQty Quantity Open for Consumption
AssignedQuantityInBaseUnit ARunTmpAssignedQuantityInBsUnt Assigned Quantity
OpenForSupAssgmtQtyInBsUnt OpenDemandQuantity Quantity Open for Assignment
BaseUnit BaseUnit Unit of Measure
SupAssgmtAggrgQtyUnit SupAssgmtAggrgQtyUnit
Material Material Vehicle Model
MaterialGroup MaterialGroup Product Group
MaterialType MaterialType Material Type
CrossPlantConfigurableProduct CrossPlantConfigurableProduct Cross-plant CP
Plant Plant Valuation Area
SalesOrganization SalesOrganization Sales Organization
DistributionChannel DistributionChannel RefDistCh-Cust/Mat.
Division Division Internal Division ID
SalesDistrict SalesDistrict Sales District
Customer Customer Sold-to Party
CompanyCode CompanyCode Receiver Company Code
_BaseUnit _BaseUnit
_CompanyCode _CompanyCode
_Customer _Customer
_DistrChnl _DistrChnl
_Divn _Divn
_Plant _Plant
_ProductGroupText _ProductGroupText
_ProductText _ProductText
_ProductTypeText _ProductTypeText
_RqmtText _RqmtText
_SalesDist _SalesDist
_SalesOrgText _SalesOrgText

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_SupDmndOvwPgSupProtQ.
-- 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_SupDmndOvwPgSupProtQ AS
SELECT
  SupProtTimeBucketUUID,
  RequirementType,
  ProductAvailabilityDate,
  RequestedDeliveryDate,
  StartDate,
  EndDate,
  SupProtProtectedQuantity,
  SupProtConsumedQuantity,
  ARunSupProtUnconsumedQty,
  ARunTmpAssignedQuantityInBsUnt AS AssignedQuantityInBaseUnit,
  OpenDemandQuantity AS OpenForSupAssgmtQtyInBsUnt,
  BaseUnit,
  SupAssgmtAggrgQtyUnit,
  Material,
  MaterialGroup,
  MaterialType,
  CrossPlantConfigurableProduct,
  Plant,
  SalesOrganization,
  DistributionChannel,
  Division,
  SalesDistrict,
  Customer,
  CompanyCode
FROM I_SupDmndAllDocSupProtC AS Demand
LEFT OUTER JOIN I_ProductText AS _ProductText ON Material = _ProductText.Product AND _ProductText.Language = $session.system_language  -- association [0..1]
LEFT OUTER JOIN I_ProductGroupText AS _ProductGroupText ON MaterialGroup = _ProductGroupText.MaterialGroup AND _ProductGroupText.Language = $session.system_language  -- association [0..1]
LEFT OUTER JOIN I_ProductTypeText AS _ProductTypeText ON MaterialType = _ProductTypeText.ProductType AND _ProductTypeText.Language = $session.system_language  -- association [0..1]
LEFT OUTER JOIN I_SalesOrganizationText AS _SalesOrgText ON SalesOrganization = _SalesOrgText.SalesOrganization AND _SalesOrgText.Language = $session.system_language  -- association [0..1]
LEFT OUTER JOIN I_DistributionChannelText AS _DistrChnl ON DistributionChannel = _DistrChnl.DistributionChannel AND _DistrChnl.Language = $session.system_language  -- association [0..1]
LEFT OUTER JOIN I_DivisionText AS _Divn ON Division = _Divn.Division AND _Divn.Language = $session.system_language  -- association [0..1]
LEFT OUTER JOIN I_SalesDistrictText AS _SalesDist ON SalesDistrict = _SalesDist.SalesDistrict AND _SalesDist.Language = $session.system_language  -- association [0..1]
LEFT OUTER JOIN I_Plant AS _Plant ON Plant = _Plant.Plant  -- association [0..1]
LEFT OUTER JOIN I_CompanyCode AS _CompanyCode ON CompanyCode = _CompanyCode.CompanyCode  -- association [0..1]
LEFT OUTER JOIN I_Customer AS _Customer ON Customer = _Customer.Customer  -- association [0..1]
LEFT OUTER JOIN I_SupDmndAllDocRqmtTypeT AS _RqmtText ON RequirementType = _RqmtText.RequirementType AND _RqmtText.Language = $session.system_language  -- association [0..1]
;