P_InvtryTurnoverSuplrQtyVarc

DDL: P_INVTRYTURNOVERSUPLRQTYVARC Type: view_entity CONSUMPTION Package: ODATA_MM_IM_INV_TURNOVR_ANLYS

App specific aggr of C_QuantityVariance

P_InvtryTurnoverSuplrQtyVarc is a Consumption CDS View that provides data about "App specific aggr of C_QuantityVariance" in SAP S/4HANA. It reads from 1 data source (C_QuantityVariance) and exposes 4 fields with key fields Supplier, Material, Plant. Part of development package ODATA_MM_IM_INV_TURNOVR_ANLYS.

Data Sources (1)

SourceAliasJoin Type
C_QuantityVariance C_QuantityVariance from

Parameters (2)

NameTypeDefault
P_StartDate bedat
P_EndDate bedat

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
EndUserText.label App specific aggr of C_QuantityVariance view
VDM.private true view
VDM.viewType #CONSUMPTION view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Supplier Supplier Supplier
KEY Material Material Vehicle Model
KEY Plant Plant Valuation Area
QuantityVarianceInPct

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_InvtryTurnoverSuplrQtyVarc.
-- 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.
-- Parameters: P_StartDate : bedat, P_EndDate : bedat

CREATE VIEW P_InvtryTurnoverSuplrQtyVarc AS
SELECT
  Supplier,
  Material,
  Plant,
  avg( QuantityVarianceInPct as abap.fltp ) AS QuantityVarianceInPct
FROM C_QuantityVariance
;