I_AllocationStatusText
Allocation Status Text
I_AllocationStatusText is a Basic CDS View that provides data about "Allocation Status Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields AllocationStatus, Language. It has 2 associations to related views. Part of development package ODATA_MANAGE_ALLOCATION.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | P_AllocationCycle | _AllocationCycle | $projection.AllocationStatus = _AllocationCycle.AllocationStatus |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IALOSTATUST | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Allocation Status Text | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | AllocationStatus | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| VDM.viewType | #BASIC | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | AllocationStatus | |||
| KEY | Language | dd07t | ddlanguage | |
| AllocationStatusDescription | ||||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'IALOSTATUST'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Allocation Status Text'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'AllocationStatus'
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #CUSTOMIZING
//@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@VDM.viewType: #BASIC
define view I_AllocationStatusText as
select from dd07t
association [0..1] to P_AllocationCycle as _AllocationCycle on $projection.AllocationStatus = _AllocationCycle.AllocationStatus
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
//@ObjectModel.foreignKey.association: '_AllocationCycle'
key cast( dd07t.domvalue_l as fco_allocation_status ) as AllocationStatus,
@Semantics.language
@ObjectModel.foreignKey.association: '_Language'
key dd07t.ddlanguage as Language,
@Semantics.text
cast(dd07t.ddtext as fco_allocation_status_text) as AllocationStatusDescription,
/* Associations */
//_AllocationCycle,
_Language
}
where dd07t.domname = 'FCO_ALLOCATION_STATUS'
and dd07t.as4local = 'A';
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