I_EAMOverallStatusText
Description of Overall Status
I_EAMOverallStatusText is a Basic CDS View that provides data about "Description of Overall Status" in SAP S/4HANA. It reads from 1 data source (eam_ostat_t) and exposes 6 fields with key fields EAMOverallStatusProfile, EAMOverallStatus, Language. It has 2 associations to related views. Part of development package EAM_OVRL_STS.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| eam_ostat_t | eam_ostat_t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_EAMOverallStatusProfile | _OverallStatusProfile | _OverallStatusProfile.EAMOverallStatusProfile = $projection.EAMOverallStatusProfile |
| [0..1] | I_Language | _Language | _Language.Language = $projection.Language |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Description of Overall Status | view | |
| VDM.viewType | #BASIC | view | |
| Search.searchable | true | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | EAMOverallStatus | view | |
| Analytics.technicalName | IEAMOSTATT | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | EAMOverallStatusProfile | overall_status_profile | ||
| KEY | EAMOverallStatus | overall_status | ||
| KEY | Language | language | ||
| EAMOverallStatusDescription | description | |||
| _Language | _Language | |||
| _OverallStatusProfile | _OverallStatusProfile |
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Description of Overall Status'
@VDM.viewType: #BASIC
@Search.searchable: true
@ObjectModel: {
usageType.serviceQuality: #A,
usageType.sizeCategory: #S,
usageType.dataClass: #CUSTOMIZING,
dataCategory: #TEXT,
representativeKey: 'EAMOverallStatus'
}
@Analytics.technicalName: 'IEAMOSTATT'
define view entity I_EAMOverallStatusText
as select from eam_ostat_t
association [0..1] to I_EAMOverallStatusProfile as _OverallStatusProfile on _OverallStatusProfile.EAMOverallStatusProfile = $projection.EAMOverallStatusProfile
association [0..1] to I_Language as _Language on _Language.Language = $projection.Language
{
@ObjectModel.foreignKey.association: '_OverallStatusProfile'
key overall_status_profile as EAMOverallStatusProfile,
@ObjectModel.text.element: [ 'EAMOverallStatusDescription' ]
key overall_status as EAMOverallStatus,
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key language as Language,
@Search: {defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8 }
@Semantics.text: true
description as EAMOverallStatusDescription,
_Language,
_OverallStatusProfile
}
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