ARUNI_L_XDOCK

DDL: ARUNI_V_L_XDOCK SQL: ARUNI_V_L_XDOCK Type: view Package: ARUN_ITA

IFO Assignment delivered quantity

ARUNI_L_XDOCK is a CDS View that provides data about "IFO Assignment delivered quantity" in SAP S/4HANA. It reads from 1 data source (arun_bdbs) and exposes 6 fields. Part of development package ARUN_ITA.

Data Sources (1)

SourceAliasJoin Type
arun_bdbs arun_bdbs from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName ARUNI_V_L_XDOCK 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 IFO Assignment delivered quantity view

Fields (6)

KeyFieldSource TableSource FieldDescription
material material Vehicle Model
plant plant Valuation Area
batch batch Lot No.
stock_source stock_source Stock Source
purchord_num purchord_num PO number
delv_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 ARUNI_L_XDOCK.
-- 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_L_XDOCK

CREATE VIEW ARUNI_L_XDOCK AS
SELECT
  material,
  plant,
  batch,
  stock_source,
  purchord_num,
  sum(alloc_qty) AS delv_qty
FROM arun_bdbs
;