C_AllocationImportExcelTypeVH
Allocation Type for Excel
C_AllocationImportExcelTypeVH is a Consumption CDS View that provides data about "Allocation Type for Excel" 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.
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 (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| Search.searchable | true | view | |
| EndUserText.label | Allocation Type for Excel | view | |
| VDM.viewType | #CONSUMPTION | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | AllocationPostingType | _AllocPostingType | AllocationPostingType | |
| KEY | AllocationType | C_AllocationContextVH | AllocationType | |
| AllocationPostingTypeText |
@AccessControl.authorizationCheck: #CHECK
@ObjectModel.usageType: {
dataClass: #MIXED,
serviceQuality: #C,
sizeCategory: #M }
@ObjectModel.dataCategory: #VALUE_HELP
@Search.searchable: true
@EndUserText.label: 'Allocation Type for Excel'
@VDM.viewType: #CONSUMPTION
define view entity C_AllocationImportExcelTypeVH
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
}
where _AllocPostingType.AllocationPostingType <> 'K'
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