I_StatusCodeText
Status Code Text
I_StatusCodeText is a Basic CDS View that provides data about "Status Code Text" in SAP S/4HANA. It reads from 1 data source (P_StatusCodeText) and exposes 9 fields with key fields StatusCode, StatusProfile, Language. It has 3 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| P_StatusCodeText | P_StatusCodeText | from |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_StatusCode | _StatusCode | $projection.StatusCode = _StatusCode.StatusCode and $projection.StatusProfile = _StatusCode.StatusProfile |
| [0..1] | I_StatusProfile | _StatusProfile | $projection.StatusProfile = _StatusProfile.StatusProfile |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.sqlViewName | ISTATUSCODETEXT | view | |
| EndUserText.label | Status Code Text | view | |
| Analytics.dataExtraction.enabled | true | view | |
| AbapCatalog.preserveKey | true | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.representativeKey | StatusCode | view |
Fields (9)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | StatusCode | StatusCode | ||
| KEY | StatusProfile | StatusProfile | ||
| KEY | Language | Language | ||
| StatusName | StatusName | |||
| StatusShortName | StatusShortName | |||
| IsUserStatus | P_StatusCodeText | IsUserStatus | ||
| _StatusProfile | _StatusProfile | |||
| _Language | _Language | |||
| _StatusCode | _StatusCode |
@ClientHandling.algorithm: #SESSION_VARIABLE //Inserted by VDM CDS Suite Plugin
@AbapCatalog.sqlViewName: 'ISTATUSCODETEXT'
@EndUserText.label: 'Status Code Text'
@Analytics.dataExtraction.enabled: true
@AbapCatalog.preserveKey:true
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #L
@AccessControl.personalData.blocking: #NOT_REQUIRED
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.representativeKey: 'StatusCode'
define view I_StatusCodeText as select from P_StatusCodeText
association [0..1] to I_StatusCode as _StatusCode on
$projection.StatusCode = _StatusCode.StatusCode and
$projection.StatusProfile = _StatusCode.StatusProfile
association [0..1] to I_StatusProfile as _StatusProfile on
$projection.StatusProfile = _StatusProfile.StatusProfile
association [0..1] to I_Language as _Language on
$projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_StatusCode'
key StatusCode,
@ObjectModel.foreignKey.association: '_StatusProfile'
key StatusProfile,
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key Language,
@Semantics.text: true
StatusName,
@Semantics.text: true
StatusShortName,
P_StatusCodeText.IsUserStatus,
_StatusProfile,
_Language,
_StatusCode
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"P_STATUSCODETEXT"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_STATUSCODE",
"I_STATUSPROFILE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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