I_EAMOverallStatusText

DDL: I_EAMOVERALLSTATUSTEXT SQL: IEAMOSTATT Type: view BASIC

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.

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 (12)

NameValueLevelField
AbapCatalog.sqlViewName IEAMOSTATT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Description of Overall Status view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE 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

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY EAMOverallStatusProfile overall_status_profile
KEY EAMOverallStatus overall_status
KEY Language language
EAMOverallStatusDescription description
_Language _Language
_OverallStatusProfile _OverallStatusProfile
@AbapCatalog.sqlViewName: 'IEAMOSTATT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Description of Overall Status'
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@Search.searchable: true

@ObjectModel: {
   usageType.serviceQuality: #A,
   usageType.sizeCategory: #S,
   usageType.dataClass: #CUSTOMIZING,
   dataCategory: #TEXT,
   representativeKey: 'EAMOverallStatus'
}

define view 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
}