I_PPM_StatusAreaStatus
PPM Project Status Area Status Code
I_PPM_StatusAreaStatus is a Basic CDS View that provides data about "PPM Project Status Area Status Code" in SAP S/4HANA. It reads from 1 data source (/s4ppm/stat_val) and exposes 5 fields with key field Status. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| /s4ppm/stat_val | /s4ppm/stat_val | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1] | I_PPM_StatusAreaStatusText | _Text | _Text.Status = $projection.Status and _Text.Language = $session.system_language |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | PPM Project Status Area Status Code | 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 | IPPMSTATAVALCODE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ObjectModel.representativeKey | Status | view | |
| ObjectModel.resultSet.sizeCategory | #XS | 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 | ||
| Criticality | criticality | |||
| SortField | sort_number | |||
| StatusDescription | _Text | StatusDescription | ||
| _Text | _Text |
@EndUserText.label: 'PPM Project Status Area Status Code'
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog: {
sqlViewName: 'IPPMSTATAVALCODE',
compiler.compareFilter: true,
preserveKey:true
}
@ObjectModel:
{
representativeKey: 'Status',
resultSet.sizeCategory: #XS,
usageType:
{
serviceQuality: #A,
dataClass: #CUSTOMIZING,
sizeCategory: #S
}
}
define view I_PPM_StatusAreaStatus as select from /s4ppm/stat_val
association [1] to I_PPM_StatusAreaStatusText as _Text
on _Text.Status = $projection.Status and _Text.Language = $session.system_language
{
@ObjectModel.text.element:['StatusDescription']
key status as Status,
criticality as Criticality,
sort_number as SortField,
@Semantics.text: true
_Text.StatusDescription as StatusDescription,
_Text
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_PPM_STATUSAREASTATUSTEXT",
"/S4PPM/STAT_VAL"
],
"ASSOCIATED":
[
"I_PPM_STATUSAREASTATUSTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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