I_PPM_StatusAreaCode
Project Status Area Code
I_PPM_StatusAreaCode is a Basic CDS View that provides data about "Project Status Area Code" in SAP S/4HANA. It reads from 1 data source (/s4ppm/statareac) and exposes 5 fields with key field StatusArea. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| /s4ppm/statareac | /s4ppm/statareac | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_PPM_StatusAreaCodeText | _Text | _Text.StatusArea = $projection.StatusArea and _Text.Language = $session.system_language |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Project Status Area Code | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.sqlViewName | IPPMSTATAREACODE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ObjectModel.representativeKey | StatusArea | view | |
| ObjectModel.resultSet.sizeCategory | #XS | 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 | StatusArea | status_area_status | ||
| SortField | sequence | |||
| IsOverallStatus | overall_indicator | |||
| StatusAreaDescription | _Text | StatusAreaDescription | ||
| _Text | _Text |
@EndUserText.label: 'Project Status Area Code'
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog: {
sqlViewName: 'IPPMSTATAREACODE',
compiler.compareFilter: true,
preserveKey:true
}
@ObjectModel:
{
representativeKey: 'StatusArea',
resultSet.sizeCategory: #XS,
usageType:
{
serviceQuality: #D,
dataClass: #CUSTOMIZING,
sizeCategory: #S
}
}
define view I_PPM_StatusAreaCode as select from /s4ppm/statareac
association [1..1] to I_PPM_StatusAreaCodeText as _Text
on _Text.StatusArea = $projection.StatusArea and _Text.Language = $session.system_language
{
@UI.textArrangement: #TEXT_ONLY
@ObjectModel.text.element:['StatusAreaDescription']
key status_area_status as StatusArea,
sequence as SortField,
overall_indicator as IsOverallStatus,
_Text.StatusAreaDescription,
_Text
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_PPM_STATUSAREACODETEXT",
"/S4PPM/STATAREAC"
],
"ASSOCIATED":
[
"I_PPM_STATUSAREACODETEXT"
],
"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