C_AllocTopDwnDistrSimulation

DDL: C_ALLOCTOPDWNDISTRSIMULATION SQL: CALOTDDSIMUL Type: view CONSUMPTION Package: ODATA_MANAGE_ALLOCATION

TDD Simulation

C_AllocTopDwnDistrSimulation is a Consumption CDS View that provides data about "TDD Simulation" in SAP S/4HANA. It reads from 1 data source (I_AllocTopDwnDistrSimulation) and exposes 5 fields with key fields AllocationSimulationUUID, FiscalYearPeriod, AllocationSenderReferenceValue. It is exposed through 1 OData service (UI_FCO_MANAGE_ALLOCATION). Part of development package ODATA_MANAGE_ALLOCATION.

Data Sources (1)

SourceAliasJoin Type
I_AllocTopDwnDistrSimulation I_AllocTopDwnDistrSimulation from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName CALOTDDSIMUL view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
VDM.viewType #CONSUMPTION view
EndUserText.label TDD Simulation view

OData Services (1)

ServiceBindingVersionContractRelease
UI_FCO_MANAGE_ALLOCATION UI_FCOUA_MANAGE_ALLOCATION V2 C1 NOT_RELEASED

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY AllocationSimulationUUID AllocationSimulationUUID
KEY FiscalYearPeriod FiscalYearPeriod
KEY AllocationSenderReferenceValue AllocationSenderReferenceValue
NumberOfItems NumberOfItems
AllocSndrRefValTxt
@AbapCatalog.sqlViewName: 'CALOTDDSIMUL'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true

@AccessControl.authorizationCheck: #NOT_REQUIRED
@AccessControl.personalData.blocking: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE

@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S

@VDM.viewType: #CONSUMPTION

@EndUserText.label: 'TDD Simulation'
define view C_AllocTopDwnDistrSimulation as 
select from I_AllocTopDwnDistrSimulation
{
  @UI.hidden: true
  key AllocationSimulationUUID,
  
      @UI.lineItem: [{ position: 10 }]
  key FiscalYearPeriod,
  
      @UI.lineItem: [{ position: 20 }]      
      @ObjectModel.text.element: ['AllocSndrRefValTxt']
      @UI.textArrangement: #TEXT_LAST           
  key AllocationSenderReferenceValue,   
  
      @DefaultAggregation: #SUM
      @UI.lineItem: [{ position: 30 }]
      NumberOfItems,
            
      @Semantics.text: true
      @UI.hidden: true
      _AllocSndrRefValTxt[1:Language = $session.system_language].AllocSndrRefValTxt            
}