I_SitnInstceStatus

DDL: I_SITNINSTCESTATUS Type: view_entity BASIC

Status Type of Situation Instance

I_SitnInstceStatus is a Basic CDS View (Dimension) that provides data about "Status Type of Situation Instance" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field SitnInstceStatus. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_SitnInstceStatusText _Text

Annotations (18)

NameValueLevelField
EndUserText.label Status Type of Situation Instance 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.representativeKey SitnInstceStatus view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.modelingPattern #VALUE_HELP_PROVIDER view
ObjectModel.sapObjectNodeType.name BusinessSituationInstceStatus view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.lifecycle.status #DEPRECATED view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
Analytics.internalName #LOCAL view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view

Fields (3)

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

        representativeKey: 'SitnInstceStatus',
        dataCategory: #VALUE_HELP,
        modelingPattern: #VALUE_HELP_PROVIDER,
        supportedCapabilities: [#VALUE_HELP_PROVIDER, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE],
  //                modelingPattern: #ANALYTICAL_DIMENSION,

  //                supportedCapabilities: [#ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE],

        sapObjectNodeType.name: 'BusinessSituationInstceStatus'
      }
@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: {
        dataCategory: #DIMENSION,
        dataExtraction.enabled: true,
        internalName:#LOCAL
        }
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true

define root view entity I_SitnInstceStatus
  as select from dd07l
  composition [0..*] of I_SitnInstceStatusText as _Text  
{
    @ObjectModel.text.association: '_Text'
    key cast( dd07l.domvalue_l as sit_de_inst_stat  ) as SitnInstceStatus,  
    @Analytics.hidden: true
    @Consumption.hidden: true
    @Search.defaultSearchElement: true
    @Search.ranking: #HIGH
    dd07l.domvalue_l as DomainValue,    
    _Text
}
where
      dd07l.domname  = 'SIT_DO_INST_STAT'
  and dd07l.as4local = 'A'
  and dd07l.as4vers  = '0000'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_SITNINSTCESTATUSTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/