I_ResvnCompletionStatusText

DDL: I_RESVNCOMPLETIONSTATUSTEXT SQL: IRESCMPLSTSTXT Type: view BASIC

Completion Status of Reservation - Text

I_ResvnCompletionStatusText is a Basic CDS View that provides data about "Completion Status of Reservation - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields Language, ReservationCompletionStatus. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

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

Annotations (17)

NameValueLevelField
EndUserText.label Completion Status of Reservation - Text view
AbapCatalog.sqlViewName IRESCMPLSTSTXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataExtraction.enabled true view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #TEXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.representativeKey ReservationCompletionStatus view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.sizeCategory #S view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Language
KEY ReservationCompletionStatus Status
DomainValue dd07t domvalue_l
ResvnCompletionStatusText Status Text
_ResvnCompletionStatus _ResvnCompletionStatus
_Language _Language
@EndUserText.label: 'Completion Status of Reservation - Text'
@AbapCatalog.sqlViewName: 'IRESCMPLSTSTXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataExtraction.enabled: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel : {
  dataCategory: #TEXT,
  modelingPattern: #LANGUAGE_DEPENDENT_TEXT,
  representativeKey: 'ReservationCompletionStatus',
  usageType : {
    serviceQuality: #A,
    dataClass: #META,
    sizeCategory: #S
  }
}
@ObjectModel.supportedCapabilities: [#CDS_MODELING_ASSOCIATION_TARGET, 
                                     #CDS_MODELING_DATA_SOURCE,
                                     #EXTRACTION_DATA_SOURCE,
                                     #LANGUAGE_DEPENDENT_TEXT,
                                     #SEARCHABLE_ENTITY,
                                     #SQL_DATA_SOURCE]
@Search.searchable: true
@VDM: {
  lifecycle.contract.type: #PUBLIC_LOCAL_API,
  viewType: #BASIC
}

define view I_ResvnCompletionStatusText
  as select from dd07t

  /*+[hideWarning] { "IDS" :  [ "CALCULATED_FIELD_CHECK" ] } */
  association [1..1] to I_ResvnCompletionStatus as _ResvnCompletionStatus 
    on $projection.ReservationCompletionStatus = _ResvnCompletionStatus.ReservationCompletionStatus
  association [0..1] to I_Language as _Language              
    on $projection.Language = _Language.Language

{
      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key cast( dd07t.ddlanguage as spras preserving type ) as Language, 
      @EndUserText.label: 'Status'
      @ObjectModel.foreignKey.association: '_ResvnCompletionStatus'
      @ObjectModel.text.element: ['ResvnCompletionStatusText']
  key cast ( dd07t.domvalue_l as imrs_resvn_compltn_status_code ) as ReservationCompletionStatus,
  
      @Analytics.hidden: true
      @Consumption.hidden: true
      dd07t.domvalue_l as DomainValue,
      
      @EndUserText.label: 'Status Text'
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      @Semantics.text: true
      cast( dd07t.ddtext as imrs_resvn_compltn_status_text preserving type ) as ResvnCompletionStatusText,
      @ObjectModel.association.type: [#TO_COMPOSITION_PARENT, 
                                      #TO_COMPOSITION_ROOT] 
      _ResvnCompletionStatus,
      _Language

}
where
      dd07t.domname  = 'IMRS_RESVN_COMPLTN_STATUS_CODE'
  and dd07t.as4local = 'A'
  and dd07t.as4vers  = '0000'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_RESVNCOMPLETIONSTATUS"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/