C_AllocationTypeVH

DDL: C_ALLOCATIONTYPEVH SQL: CALOTYPEVH Type: view CONSUMPTION Package: ODATA_MANAGE_ALLOCATION

Allocation Type Value Help

C_AllocationTypeVH is a Consumption CDS View that provides data about "Allocation Type Value Help" in SAP S/4HANA. It reads from 1 data source (C_AllocationContextVH) and exposes 3 fields with key fields AllocationPostingType, AllocationType. It has 1 association to related views. Part of development package ODATA_MANAGE_ALLOCATION.

Data Sources (1)

SourceAliasJoin Type
C_AllocationContextVH _AllocContext inner

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_AllocationPostingType _AllocPostingType _AllocPostingType.AllocationPostingType = _DistinctValues.AllocationPostingType

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName CALOTYPEVH view
AbapCatalog.compiler.compareFilter true view
Search.searchable true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Allocation Type Value Help view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey AllocationPostingType view
ObjectModel.resultSet.sizeCategory #XS view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY AllocationPostingType _AllocPostingType AllocationPostingType
KEY AllocationType C_AllocationContextVH AllocationType
AllocationPostingTypeText
@AbapCatalog.sqlViewName: 'CALOTYPEVH'
@AbapCatalog.compiler.compareFilter: true
@Search.searchable: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Allocation Type Value Help'
@VDM.viewType: #CONSUMPTION
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.representativeKey: 'AllocationPostingType'
@ObjectModel.resultSet.sizeCategory: #XS

define view C_AllocationTypeVH
  as select distinct from P_AllocationFieldGroupDistc as _DistinctValues

    inner join            C_AllocationContextVH       as _AllocContext on _DistinctValues.AllocationType = _AllocContext.AllocationType

  association [1..1] to I_AllocationPostingType as _AllocPostingType on _AllocPostingType.AllocationPostingType = _DistinctValues.AllocationPostingType

{
      @ObjectModel.text.element: ['AllocationPostingTypeText']
  key _AllocPostingType.AllocationPostingType as AllocationPostingType,
      @UI.hidden: true
  key _AllocContext.AllocationType,

      _AllocPostingType._Text[1:Language = $session.system_language].AllocationPostingTypeText
}