C_UniversalAllocationStatusVH

DDL: C_UNIVERSALALLOCATIONSTATUSVH Type: view_entity CONSUMPTION Package: ODATA_MANAGE_ALLOCATION_V2_VH

Universal Allocation Status

C_UniversalAllocationStatusVH is a Consumption CDS View that provides data about "Universal Allocation Status" in SAP S/4HANA. It reads from 1 data source (I_AllocationStatus) and exposes 2 fields with key field AllocationStatus. Part of development package ODATA_MANAGE_ALLOCATION_V2_VH.

Data Sources (1)

SourceAliasJoin Type
I_AllocationStatus I_AllocationStatus from

Annotations (12)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Universal Allocation Status view
ObjectModel.representativeKey AllocationStatus view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.resultSet.sizeCategory #XS view
VDM.viewType #CONSUMPTION view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations false view
Search.searchable true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY AllocationStatus AllocationStatus
AllocationStatusDescription
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Universal Allocation Status'
@ObjectModel:{
  representativeKey: 'AllocationStatus',
  usageType: {
     dataClass:      #MIXED,
     serviceQuality: #C,
     sizeCategory:   #M },
  dataCategory: #VALUE_HELP, 
  resultSet.sizeCategory: #XS }
@VDM.viewType: #CONSUMPTION
@Metadata: {
  allowExtensions: true,
  ignorePropagatedAnnotations: false }
@Search.searchable: true
define view entity C_UniversalAllocationStatusVH as 
select from I_AllocationStatus 
{
  @ObjectModel.text.element: ['AllocationStatusDescription']
  @Search.defaultSearchElement: true
  @Search.fuzzinessThreshold: 0.8
  @Search.ranking: #HIGH
  key AllocationStatus, 
  @Search.defaultSearchElement: true
  @Search.fuzzinessThreshold: 0.8
  _Text[1:Language = $session.system_language].AllocationStatusDescription
}