I_PPM_StatusAreaStatusText
PPM Project Status Area Status Code Text
I_PPM_StatusAreaStatusText is a Basic CDS View that provides data about "PPM Project Status Area Status Code Text" in SAP S/4HANA. It reads from 1 data source (/s4ppm/stat_valt) and exposes 5 fields with key fields Status, Language. It has 2 associations to related views. Part of development package VDM_PPM_OBJECTS_STATUSAREA.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| /s4ppm/stat_valt | /s4ppm/stat_valt | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_PPM_StatusAreaStatus | _Key | $projection.Status = _Key.Status |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | PPM Project Status Area Status Code Text | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AbapCatalog.sqlViewName | IPPMSTATAVALCODT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | Status | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.sizeCategory | #S | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Status | status | ||
| KEY | Language | langu | ||
| StatusDescription | description | Status Description | ||
| _Key | _Key | |||
| _Language | _Language |
@EndUserText.label: 'PPM Project Status Area Status Code Text'
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog: {
sqlViewName: 'IPPMSTATAVALCODT',
compiler.compareFilter: true,
preserveKey:true
}
@ObjectModel:
{
dataCategory: #TEXT,
representativeKey: 'Status',
usageType:
{
serviceQuality: #A,
dataClass: #CUSTOMIZING,
sizeCategory: #S
}
}
define view I_PPM_StatusAreaStatusText as select from /s4ppm/stat_valt
association [0..1] to I_PPM_StatusAreaStatus as _Key on $projection.Status = _Key.Status
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.text.element:['StatusDescription']
@ObjectModel.foreignKey.association: '_Key'
key status as Status,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key langu as Language,
@Semantics.text: true
@EndUserText.label: 'Status Description'
@UI.hidden: true
description as StatusDescription,
_Key,
_Language
}
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