ARUN_CONF_SALLOC

DDL: ARUN_CONF_SALLOC SQL: ARUN_V_CF_SALLOC Type: view

Purchase order allocated quantity

ARUN_CONF_SALLOC is a CDS View that provides data about "Purchase order allocated quantity" in SAP S/4HANA. It reads from 1 data source (arun_bdbs) and exposes 2 fields with key field purchord_num.

Data Sources (1)

SourceAliasJoin Type
arun_bdbs arun_bdbs from

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName ARUN_V_CF_SALLOC view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
EndUserText.label Purchase order allocated quantity view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY purchord_num purchord_num PO number
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_CONF_SALLOC.
-- 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_CF_SALLOC

CREATE VIEW ARUN_CONF_SALLOC AS
SELECT
  purchord_num,
  sum( alloc_qty) AS alloc_qty
FROM arun_bdbs
;