E_AllocationRunResult
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. Part of development package ODATA_RUN_ALLOCATION.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| alloc_run_res | Persistence | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | UniversalAllocationRun | alloc_run_res | run_id | |
| KEY | AllocationCycle | alloc_run_res | cycle_key | |
| KEY | AllocationCycleStartDate | alloc_run_res | sdate_key | |
| KEY | AllocationCycleSegment | alloc_run_res | segment_key | |
| KEY | AllocationRunDataCategory | alloc_run_res | data_type | |
| KEY | AllocationRunResultItem | alloc_run_res | alloc_result_seqnr |
@AbapCatalog.sqlViewName: 'EALLOCRUNRES'
@AbapCatalog.preserveKey:true
@AbapCatalog.compiler.compareFilter:true
@EndUserText.label: 'Allocation Run Result'
@VDM.viewType: #EXTENSION
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@ObjectModel.usageType.sizeCategory: #XXL
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.serviceQuality: #D
//Do not use @ClientHandling.algorithm: #SESSION_VARIABLE for extension include views
define view E_AllocationRunResult
as select from alloc_run_res as Persistence
{
key Persistence.run_id as UniversalAllocationRun,
key Persistence.cycle_key as AllocationCycle,
key Persistence.sdate_key as AllocationCycleStartDate,
key Persistence.segment_key as AllocationCycleSegment,
key Persistence.data_type as AllocationRunDataCategory,
key Persistence.alloc_result_seqnr as AllocationRunResultItem
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA