C_AllocationContextVH

DDL: C_ALLOCATIONCONTEXTVH SQL: CALOCONTXVH Type: view CONSUMPTION Package: ODATA_MANAGE_ALLOCATION

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. It is exposed through 1 OData service (FCO_ALLOCATION_RUN_GROUP). It is used in 1 Fiori application: Manage Cycle Run Groups. Part of development package ODATA_MANAGE_ALLOCATION.

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

OData Services (1)

ServiceBindingVersionContractRelease
FCO_ALLOCATION_RUN_GROUP FCO_ALLOCATION_RUN_GROUP V2 C1 NOT_RELEASED

Fiori Apps (1)

App IDApp NameTypeDescription
F4935 Manage Cycle Run Groups Transactional You use this app to manage your allocation cycle run groups. With this Fiori application, user can maintain cycle run groups and assign allocation cycles into the run groups. With grouping provided, parallel processing of allocation cycles is possible.

Manage Cycle Run Groups

Business Role: Cost Accountant - Overhead

With this app, you can organize allocation cycles into groups to enable parallel processing. If you don't organize your allocation cycles into groups, the cycles are always processed sequentially. This can be time consuming. A cycle run group is always processed in parallel with other cycle run groups, so you can significantly reduce the processing time if you organize your allocation cycles into groups. The allocation cycles within a single group are processed sequentially, but in parallel with other groups.

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
}