I_SupDmndSDSchedLine

DDL: I_SUPDMNDSDSCHEDLINE Type: view COMPOSITE Package: VDM_ARUN_ANALYTICS

Basic View for Demand Date

I_SupDmndSDSchedLine is a Composite CDS View that provides data about "Basic View for Demand Date" in SAP S/4HANA. It reads from 1 data source (P_SupDmndOvwSDDateBasic) and exposes 14 fields. Part of development package VDM_ARUN_ANALYTICS.

Data Sources (1)

SourceAliasJoin Type
P_SupDmndOvwSDDateBasic P_SupDmndOvwSDDateBasic from

Annotations (9)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Basic View for Demand Date view
VDM.viewType #COMPOSITE view
AccessControl.authorizationCheck #CHECK view
AbapCatalog.sqlViewName ISUPDMNDOVWSDDT view
AbapCatalog.compiler.compareFilter true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XXL view

Fields (14)

KeyFieldSource TableSource FieldDescription
RequirementDocumentNumber RequirementDocumentNumber SD Sched. Agmt
RequirementDocumentItem RequirementDocumentItem WBS Element
RequestedDate RequestedDate Mat.Avail.Date
ProductAvailabilityDate ProductAvailabilityDate Mat.Avail.Date
Material Material Vehicle Model
MaterialGroup MaterialGroup Product Group
Plant Plant Valuation Area
SalesOrganization SalesOrganization Sales Organization
DistributionChannel DistributionChannel RefDistCh-Cust/Mat.
Division Division Internal Division ID
EarliestReqdDelivDate
ConfdOrderQtyByMatlAvailCheck
ScheduleLineOrderQuantity
DeliveredQuantityInBaseUnit

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 I_SupDmndSDSchedLine.
-- 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 I_SupDmndSDSchedLine AS
SELECT
  RequirementDocumentNumber,
  RequirementDocumentItem,
  RequestedDate,
  ProductAvailabilityDate,
  Material,
  MaterialGroup,
  Plant,
  SalesOrganization,
  DistributionChannel,
  Division,
  min( RequestedDate) AS EarliestReqdDelivDate,
  sum( ConfdOrderQtyByMatlAvailCheck ) AS ConfdOrderQtyByMatlAvailCheck,
  sum( ScheduleLineOrderQuantity ) AS ScheduleLineOrderQuantity,
  sum( DeliveredQuantityInBaseUnit ) AS DeliveredQuantityInBaseUnit
FROM P_SupDmndOvwSDDateBasic
;