C_AllocationTypeVH
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)
| Source | Alias | Join Type |
|---|---|---|
| C_AllocationContextVH | _AllocContext | inner |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_AllocationPostingType | _AllocPostingType | _AllocPostingType.AllocationPostingType = _DistinctValues.AllocationPostingType |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA