I_IncidentStatusText

DDL: I_INCIDENTSTATUSTEXT SQL: IINCSTATUST Type: view BASIC Package: EHHSS_BO_INC_IMPL

Incident Status - Text

I_IncidentStatusText is a Basic CDS View that provides data about "Incident Status - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields IncidentStatus, Language. It has 2 associations to related views. Part of development package EHHSS_BO_INC_IMPL.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_IncidentStatus _IncidentStatus $projection.IncidentStatus = _IncidentStatus.IncidentStatus
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IINCSTATUST view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ObjectModel.representativeKey IncidentStatus view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Incident Status - Text view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #META view
Metadata.ignorePropagatedAnnotations true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY IncidentStatus
KEY Language dd07t ddlanguage
IncidentStatusText dd07t ddtext
_IncidentStatus _IncidentStatus
_Language _Language
@AbapCatalog.sqlViewName: 'IINCSTATUST'
@Analytics.dataExtraction.enabled: true
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #TEXT
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@ObjectModel.representativeKey: 'IncidentStatus'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Incident Status - Text'
@ClientHandling.algorithm: #SESSION_VARIABLE

@ObjectModel.usageType: {serviceQuality: #C, sizeCategory: #XL, dataClass: #META}
@ObjectModel.supportedCapabilities: [#EXTRACTION_DATA_SOURCE]
@Metadata.ignorePropagatedAnnotations: true

define view I_IncidentStatusText
  as select from dd07t
  association [0..1] to I_IncidentStatus as _IncidentStatus on $projection.IncidentStatus = _IncidentStatus.IncidentStatus
  association [0..1] to I_Language       as _Language       on $projection.Language = _Language.Language
{
      @ObjectModel.foreignKey.association: '_IncidentStatus'
  key cast(dd07t.domvalue_l as ehhss_inc_status_code_nconv) as IncidentStatus, // cast to data element with no conversion exit

      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key dd07t.ddlanguage                                      as Language,
      @Semantics.text:true
      dd07t.ddtext                                          as IncidentStatusText,

      _IncidentStatus,
      _Language
}
where
      dd07t.domname  = 'EHFND_BO_STATUS_TA_CODE_NCONV'
  and dd07t.as4local = 'A'