I_SitnInstceStatusText

DDL: I_SITNINSTCESTATUSTEXT Type: view_entity BASIC

Status Type of Situation Instance - Text

I_SitnInstceStatusText is a Basic CDS View that provides data about "Status Type of Situation Instance - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields Language, SitnInstceStatus. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

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

Annotations (15)

NameValueLevelField
EndUserText.label Status Type of Situation Instance - Text view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #META view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey SitnInstceStatus view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.lifecycle.status #DEPRECATED view
Analytics.dataExtraction.enabled true view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Language
KEY SitnInstceStatus
DomainValue dd07t domvalue_l
SitnInstceStatusValueName
_SitnInstceStatus _SitnInstceStatus
_Language _Language
@EndUserText.label: 'Status Type of Situation Instance - Text'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: {
      usageType: {
         sizeCategory: #S,
         serviceQuality: #A,
         dataClass:#META
      },
      resultSet.sizeCategory: #XS, // expect <100 entries  

      dataCategory: #TEXT,
      representativeKey: 'SitnInstceStatus',
      modelingPattern: #LANGUAGE_DEPENDENT_TEXT,
      supportedCapabilities: [#LANGUAGE_DEPENDENT_TEXT, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET]
    }

@VDM: {
        viewType: #BASIC,
        lifecycle.contract.type: #PUBLIC_LOCAL_API,
        lifecycle.status:  #DEPRECATED 
        // TODO: Not sure if I can so this!

        //  sucessor: <name of successor view>

}        
@Analytics: {
        dataExtraction.enabled: true
        }
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true

define view entity I_SitnInstceStatusText
  as select from dd07t 
  association to parent I_SitnInstceStatus as _SitnInstceStatus
    on $projection.SitnInstceStatus = _SitnInstceStatus.SitnInstceStatus
  association [0..1] to I_Language as _Language      
    on $projection.Language = _Language.Language
{
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key cast( dd07t.ddlanguage as spras preserving type ) as Language, 
      @ObjectModel.foreignKey.association: '_SitnInstceStatus'
      @ObjectModel.text.element: ['SitnInstceStatusValueName']
  key cast( dd07t.domvalue_l as sit_de_inst_stat ) as SitnInstceStatus,
      @Analytics.hidden: true
      @Consumption.hidden: true
      dd07t.domvalue_l as DomainValue,
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      @Semantics.text: true
      cast(dd07t.ddtext as sit_de_inst_stat_desc preserving type ) as SitnInstceStatusValueName,
      _SitnInstceStatus,
      _Language
} 
where dd07t.domname  = 'SIT_DO_INST_STAT'
  and dd07t.as4local = 'A'
  and dd07t.as4vers  = '0000'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_SITNINSTCESTATUS"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/