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