Arun_Com_Ralloc

DDL: ARUN_COM_RALLOC SQL: V_ARUN_COM_ALLOC Type: view

Subcontrg PO/Prodn. Ord allocated qty

Arun_Com_Ralloc is a CDS View that provides data about "Subcontrg PO/Prodn. Ord allocated qty" in SAP S/4HANA. It reads from 1 data source (arun_bdbs) and exposes 5 fields with key fields mandt, reserv_num, reserv_item.

Data Sources (1)

SourceAliasJoin Type
arun_bdbs arun_bdbs from

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName V_ARUN_COM_ALLOC 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 Subcontrg PO/Prodn. Ord allocated qty view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY mandt mandt Editing Client
KEY reserv_num reserv_num Reservation
KEY reserv_item reserv_item Reservation Item
bdart req_ind Requirement Type
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_Com_Ralloc.
-- 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: V_ARUN_COM_ALLOC

CREATE VIEW Arun_Com_Ralloc AS
SELECT
  mandt,
  reserv_num,
  reserv_item,
  req_ind AS bdart,
  sum(alloc_qty) AS alloc_qty
FROM arun_bdbs
;