I_EAMOverallStatusText

DDL: I_EAMOVERALLSTATUSTEXT Type: view_entity BASIC Package: EAM_OVRL_STS

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)

SourceAliasJoin Type
eam_ostat_t eam_ostat_t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_EAMOverallStatusProfile _OverallStatusProfile _OverallStatusProfile.EAMOverallStatusProfile = $projection.EAMOverallStatusProfile
[0..1] I_Language _Language _Language.Language = $projection.Language

Annotations (10)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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
}