ARUN_I_STAT_PR

DDL: ARUN_I_STAT_PR SQL: ARUNI_V_PR_STAT Type: view Package: ARUN_ITA

Assigned quantities aggregation at status level for Purchase Requisitions

ARUN_I_STAT_PR is a CDS View that provides data about "Assigned quantities aggregation at status level for Purchase Requisitions" in SAP S/4HANA. It reads from 1 data source (arun_preview) and exposes 7 fields. Part of development package ARUN_ITA.

Data Sources (1)

SourceAliasJoin Type
arun_preview arun_preview from

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName ARUNI_V_PR_STAT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
EndUserText.label Assigned quantities aggregation at status level for Purchase Requisitions view

Fields (7)

KeyFieldSource TableSource FieldDescription
material material Vehicle Model
plant plant Valuation Area
purchord_num purchord_num PO number
purchord_sch purchord_sch PO Schedule Line
arun_mode arun_mode ARun Mode
arun_status arun_status ARun Status
alloc_qty

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 ARUN_I_STAT_PR.
-- 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: ARUNI_V_PR_STAT

CREATE VIEW ARUN_I_STAT_PR AS
SELECT
  material,
  plant,
  purchord_num,
  purchord_sch,
  arun_mode,
  arun_status,
  sum(alloc_qty) AS alloc_qty
FROM arun_preview
;