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
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
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"ALLOC_RUN_RES"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/