P_PurchaseQuotaItemTotal

DDL: P_PURCHASEQUOTAITEMTOTAL SQL: PPURQTAITMTTL Type: view BASIC Package: VDM_MM_PUR_SOS_QTA

Sum of Quota distribution

P_PurchaseQuotaItemTotal is a Basic CDS View that provides data about "Sum of Quota distribution" in SAP S/4HANA. It reads from 1 data source (equp) and exposes 3 fields. Part of development package VDM_MM_PUR_SOS_QTA.

Data Sources (1)

SourceAliasJoin Type
equp QuotaItem from

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName PPURQTAITMTTL view
AbapCatalog.compiler.compareFilter true view
VDM.private true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (3)

KeyFieldSource TableSource FieldDescription
QuotaArrangement equp qunum Quota arr.
QuotaTotal
NoofSOS

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_PurchaseQuotaItemTotal.
-- 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: PPURQTAITMTTL

CREATE VIEW P_PurchaseQuotaItemTotal AS
SELECT
  QuotaItem.qunum AS QuotaArrangement,
  sum(QuotaItem.quote) AS QuotaTotal,
  count(*) AS NoofSOS
FROM equp AS QuotaItem
;