C_AllocationContextVH

DDL: C_ALLOCATIONCONTEXTVH SQL: CALOCONTXVH Type: view CONSUMPTION

Allocation Context Value Help

C_AllocationContextVH is a Consumption CDS View that provides data about "Allocation Context Value Help" in SAP S/4HANA. It reads from 1 data source (I_AllocationContextType) and exposes 2 fields with key field AllocationType.

Data Sources (1)

SourceAliasJoin Type
I_AllocationContextType I_AllocationContextType from

Annotations (13)

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

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY AllocationType
AllocationContextTypeText
@AbapCatalog.sqlViewName: 'CALOCONTXVH'
@AbapCatalog.compiler.compareFilter: true
@Search.searchable: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Allocation Context Value Help'
@VDM.viewType: #CONSUMPTION
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.representativeKey: 'AllocationType'
@ObjectModel.resultSet.sizeCategory: #XS
define view C_AllocationContextVH as 
//select from I_PlanningCategory

select from I_AllocationContextType                                                                 
{ 
  @ObjectModel.text.element: ['AllocationContextTypeText']
  @Search.defaultSearchElement: true
  @Search.fuzzinessThreshold: 0.8
  @Search.ranking: #HIGH
  key cast(AllocationType as fco_allocation_context) as AllocationType,  
  @Search.defaultSearchElement: true
  @Search.fuzzinessThreshold: 0.8
  @Search.ranking: #HIGH
  _Text[1:Language = $session.system_language].AllocationContextTypeText
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_ALLOCATIONCONTEXTTYPE",
"I_ALLOCATIONCONTEXTTYPETEXT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/