P_SupDmndOvwSTODateBasic1

DDL: P_SUPDMNDOVWSTODATEBASIC1 Type: view COMPOSITE Package: VDM_ARUN_ANALYTICS

SD Item For Supply Demand Overview

P_SupDmndOvwSTODateBasic1 is a Composite CDS View that provides data about "SD Item For Supply Demand Overview" in SAP S/4HANA. It reads from 1 data source (I_SupDmndOvwSTOItem) and exposes 4 fields. Part of development package VDM_ARUN_ANALYTICS.

Data Sources (1)

SourceAliasJoin Type
I_SupDmndOvwSTOItem I_SupDmndOvwSTOItem from

Annotations (9)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #COMPOSITE view
VDM.private true view
AccessControl.authorizationCheck #CHECK view
AbapCatalog.sqlViewName PSUPDMNDOVWSTO2 view
AbapCatalog.compiler.compareFilter true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XXL view

Fields (4)

KeyFieldSource TableSource FieldDescription
RequirementDocumentNumber RequirementDocumentNumber
RequirementDocumentItem RequirementDocumentItem
RequestedDate RequestedDate
ConfdOrderQtyByMatlAvailCheck

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_SupDmndOvwSTODateBasic1.
-- 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_SupDmndOvwSTODateBasic1 AS
SELECT
  RequirementDocumentNumber,
  RequirementDocumentItem,
  RequestedDate,
  sum(ConfdOrderQtyByMatlAvailCheck) AS ConfdOrderQtyByMatlAvailCheck
FROM I_SupDmndOvwSTOItem
;