I_StatKeyFigWhereUsedAllocType
Old and New Allocation Types
I_StatKeyFigWhereUsedAllocType is a Composite CDS View that provides data about "Old and New Allocation Types" in SAP S/4HANA. It reads from 2 data sources (dd07t, dd07t) and exposes 6 fields with key fields AllocationPostingType, AllocationPostingTypeContext, AllocationPostingTypeContext.
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ISKFWHEREUSDAT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Old and New Allocation Types | view | |
| VDM.viewType | #COMPOSITE | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| UI.textArrangement | #TEXT_LAST | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | AllocationPostingType | domvalue_l | ||
| KEY | AllocationPostingTypeContext | |||
| Language | ddlanguage | |||
| KEY | AllocationPostingTypeContext | |||
| Language | ddlanguage | |||
| AllocationPostingTypeText | ddtext |
@AbapCatalog.sqlViewName: 'ISKFWHEREUSDAT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Old and New Allocation Types'
@VDM.viewType: #COMPOSITE
@ObjectModel.usageType: {
sizeCategory: #S,
serviceQuality: #C,
dataClass: #META
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@UI.textArrangement: #TEXT_LAST
define view I_StatKeyFigWhereUsedAllocType as select from dd07t
//association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
key domvalue_l as AllocationPostingType,
key 'O' as AllocationPostingTypeContext,
ddlanguage as Language,
ddtext as AllocationPostingTypeText
}
where
domname = 'ALART'
and ddlanguage = $session.system_language
union select from dd07t
//association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
key domvalue_l as AllocationPostingType,
key 'N' as AllocationPostingTypeContext,
ddlanguage as Language,
ddtext as AllocationPostingTypeText
}
where
domname = 'STATKEYFIGWHEREUSEDALLOCTYPE'
and ddlanguage = $session.system_language
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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