I_PPM_StatusAreaTrend
PPM Project Status Area Trend Code
I_PPM_StatusAreaTrend is a Basic CDS View that provides data about "PPM Project Status Area Trend Code" in SAP S/4HANA. It reads from 1 data source (/s4ppm/stat_trd) and exposes 5 fields with key field StatusTrend. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| /s4ppm/stat_trd | /s4ppm/stat_trd | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1] | I_PPM_StatusAreaTrendText | _Text | _Text.StatusTrend = $projection.StatusTrend and _Text.Language = $session.system_language |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPPMSTATATRDCODE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | PPM Project Status Area Trend Code | view | |
| ObjectModel.representativeKey | StatusTrend | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | StatusTrend | trend | ||
| Criticality | criticality | |||
| SortField | sort_number | |||
| StatusTrendDescription | _Text | StatusTrendDescription | ||
| _Text | _Text |
@AbapCatalog.sqlViewName: 'IPPMSTATATRDCODE'
@AbapCatalog.compiler.compareFilter: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'PPM Project Status Area Trend Code'
@ObjectModel:
{
representativeKey: 'StatusTrend',
resultSet.sizeCategory: #XS,
usageType:
{
serviceQuality: #C,
dataClass: #CUSTOMIZING,
sizeCategory: #S
}
}
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
define view I_PPM_StatusAreaTrend as select from /s4ppm/stat_trd
association [1] to I_PPM_StatusAreaTrendText as _Text
on _Text.StatusTrend = $projection.StatusTrend
and _Text.Language = $session.system_language
{
@ObjectModel.text.element:['StatusTrendDescription']
key trend as StatusTrend,
criticality as Criticality,
sort_number as SortField,
@Semantics.text: true
_Text.StatusTrendDescription as StatusTrendDescription,
_Text
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_PPM_STATUSAREATRENDTEXT",
"/S4PPM/STAT_TRD"
],
"ASSOCIATED":
[
"I_PPM_STATUSAREATRENDTEXT"
],
"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