C_UnivAllocationTargetTypeVH

DDL: C_UNIVALLOCATIONTARGETTYPEVH Type: view_entity CONSUMPTION Package: ODATA_ALLOC_MIGRATION

Target Allocation Context

C_UnivAllocationTargetTypeVH is a Consumption CDS View that provides data about "Target Allocation Context" in SAP S/4HANA. It reads from 1 data source (I_AllocationContextType) and exposes 2 fields with key field AllocationType. It is exposed through 1 OData service (UI_FCO_ALLOC_MIGRATION). Part of development package ODATA_ALLOC_MIGRATION.

Data Sources (1)

SourceAliasJoin Type
I_AllocationContextType I_AllocationContextType from

Annotations (12)

NameValueLevelField
EndUserText.label Target Allocation Context view
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.representativeKey AllocationType 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

OData Services (1)

ServiceBindingVersionContractRelease
UI_FCO_ALLOC_MIGRATION UI_FCO_ALLOC_MIGRATION V4 C1 NOT_RELEASED

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY AllocationType
AllocationContextTypeText
@AbapCatalog.viewEnhancementCategory: [#NONE]
@EndUserText.label: 'Target Allocation Context'
@AccessControl.authorizationCheck: #MANDATORY
@ObjectModel:{
  representativeKey: 'AllocationType',
  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_UnivAllocationTargetTypeVH
  as select from I_AllocationContextType
{
      @ObjectModel.text.element: ['AllocationContextTypeText']
      @Search: {
        defaultSearchElement: true,
        ranking: #HIGH,
        fuzzinessThreshold: 0.8 }
      @UI: { hidden: true }
  key cast(AllocationType as fco_allocation_context) as AllocationType,
      @Search: {
        defaultSearchElement: true,
        fuzzinessThreshold: 0.8 }
      _Text[1:Language = $session.system_language].AllocationContextTypeText
}