ARUN_I_STAT_FUTURE

DDL: ARUN_I_STAT_FUTURE SQL: ARUNI_V_FUT_STAT Type: view Package: ARUN_ITA

Assigned quantities aggregation at status level for future stock in Normal mode

ARUN_I_STAT_FUTURE is a CDS View that provides data about "Assigned quantities aggregation at status level for future stock in Normal mode" in SAP S/4HANA. It reads from 1 data source (arun_bdbs) and exposes 7 fields. Part of development package ARUN_ITA.

Data Sources (1)

SourceAliasJoin Type
arun_bdbs arun_bdbs from

Parameters (1)

NameTypeDefault
p_stock_source arun_bskz

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName ARUNI_V_FUT_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
ClientHandling.algorithm #AUTOMATED view
EndUserText.label Assigned quantities aggregation at status level for future stock in Normal mode 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_FUTURE.
-- 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_FUT_STAT
-- Parameters: p_stock_source : arun_bskz

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