E_AllocationRunResult

DDL: E_ALLOCATIONRUNRESULT SQL: EALLOCRUNRES Type: view EXTENSION

Allocation Run Result

E_AllocationRunResult is a Extension CDS View that provides data about "Allocation Run Result" in SAP S/4HANA. It reads from 1 data source (alloc_run_res) and exposes 6 fields with key fields UniversalAllocationRun, AllocationCycle, AllocationCycleStartDate, AllocationCycleSegment, AllocationRunDataCategory.

Data Sources (1)

SourceAliasJoin Type
alloc_run_res Persistence from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName EALLOCRUNRES view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Allocation Run Result view
VDM.viewType #EXTENSION view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #D view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY UniversalAllocationRun alloc_run_res run_id UUID
KEY AllocationCycle alloc_run_res cycle_key Cycle
KEY AllocationCycleStartDate alloc_run_res sdate_key Valid From
KEY AllocationCycleSegment alloc_run_res segment_key Segment number
KEY AllocationRunDataCategory alloc_run_res data_type Type
KEY AllocationRunResultItem alloc_run_res alloc_result_seqnr Result Pos.

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 E_AllocationRunResult.
-- 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: EALLOCRUNRES

CREATE VIEW E_AllocationRunResult AS
SELECT
  Persistence.run_id AS UniversalAllocationRun,
  Persistence.cycle_key AS AllocationCycle,
  Persistence.sdate_key AS AllocationCycleStartDate,
  Persistence.segment_key AS AllocationCycleSegment,
  Persistence.data_type AS AllocationRunDataCategory,
  Persistence.alloc_result_seqnr AS AllocationRunResultItem
FROM alloc_run_res AS Persistence
;