Arun_Purchord_Bdbs

DDL: ARUN_PURCHORD_BDBS SQL: ARUN_V_PUR_BDBS Type: view Package: ARUN_CORE

Allocated purchase order aggregate

Arun_Purchord_Bdbs is a CDS View that provides data about "Allocated purchase order aggregate" 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

Parameters (1)

NameTypeDefault
p_stock_source arun_bskz

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName ARUN_V_PUR_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 Allocated purchase order aggregate view

Fields (5)

KeyFieldSource TableSource FieldDescription
material material Vehicle Model
plant plant Valuation Area
purchord_num purchord_num PO number
purchord_sch purchord_sch PO Schedule Line
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_Purchord_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_PUR_BDBS
-- Parameters: p_stock_source : arun_bskz

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