Arun_Stock_Bdbs

DDL: ARUN_STOCK_BDBS SQL: ARUN_V_STK_BDBS Type: view Package: ARUN_CORE

Aggregate of allocated stock -Sup Assgmt

Arun_Stock_Bdbs is a CDS View that provides data about "Aggregate of allocated stock -Sup Assgmt" in SAP S/4HANA. It reads from 1 data source (arun_bdbs) and exposes 5 fields. Part of development package ARUN_CORE.

Data Sources (1)

SourceAliasJoin Type
arun_bdbs arun_bdbs from

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName ARUN_V_STK_BDBS 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 Aggregate of allocated stock -Sup Assgmt view

Fields (5)

KeyFieldSource TableSource FieldDescription
material material Vehicle Model
plant plant Valuation Area
StorageLocation arun_bdbs storage_location Sup. Stor. Loc.
batch batch Lot No.
AllocQty

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_Stock_Bdbs.
-- 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: ARUN_V_STK_BDBS

CREATE VIEW Arun_Stock_Bdbs AS
SELECT
  material,
  plant,
  arun_bdbs.storage_location AS StorageLocation,
  batch,
  sum(alloc_qty) AS AllocQty
FROM arun_bdbs
;