I_ResvnCompletionStatus

DDL: I_RESVNCOMPLETIONSTATUS Type: view BASIC

Completion Status of Reservation

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

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ResvnCompletionStatusText _ResvnCompletionStatusText $projection.ReservationCompletionStatus = _ResvnCompletionStatusText.ReservationCompletionStatus

Annotations (21)

NameValueLevelField
EndUserText.label Completion Status of Reservation view
AbapCatalog.sqlViewName IRESCMPLSTS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
Analytics.internalName #LOCAL view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.compositionRoot true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey ReservationCompletionStatus view
ObjectModel.resultSet.sizeCategory #XS 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 (3)

KeyFieldSource TableSource FieldDescription
KEY ReservationCompletionStatus
domvalue_lasDomainValue
_ResvnCompletionStatusText _ResvnCompletionStatusText
@EndUserText.label: 'Completion Status of Reservation'
@AbapCatalog: {
  sqlViewName: 'IRESCMPLSTS',
  compiler.compareFilter: true,
  preserveKey: true
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics: {
  dataCategory: #DIMENSION,
  dataExtraction.enabled: true,
  internalName: #LOCAL
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.compositionRoot: true
@ObjectModel : {
  dataCategory: #VALUE_HELP,
  modelingPattern: #ANALYTICAL_DIMENSION,
  representativeKey: 'ReservationCompletionStatus',
  resultSet.sizeCategory: #XS,

  usageType : {
    serviceQuality: #A,
    dataClass: #META,
    sizeCategory: #S
  }
}
@ObjectModel.supportedCapabilities: [#ANALYTICAL_DIMENSION, 
                                     #CDS_MODELING_ASSOCIATION_TARGET, 
                                     #CDS_MODELING_DATA_SOURCE,
                                     #EXTRACTION_DATA_SOURCE,
                                     #SEARCHABLE_ENTITY,
                                     #SQL_DATA_SOURCE, 
                                     #VALUE_HELP_PROVIDER]
@Search.searchable: true
@VDM: {
  lifecycle.contract.type: #PUBLIC_LOCAL_API,
  viewType: #BASIC
}

define view I_ResvnCompletionStatus
  as select from dd07l

  -- Text Associations
  /*+[hideWarning] { "IDS" : [ "CALCULATED_FIELD_CHECK" ] } */
  association [0..*] to I_ResvnCompletionStatusText as _ResvnCompletionStatusText 
    on $projection.ReservationCompletionStatus = _ResvnCompletionStatusText.ReservationCompletionStatus

{
      @ObjectModel.text.association: '_ResvnCompletionStatusText'
      @UI.hidden: true
  key cast ( dd07l.domvalue_l as imrs_resvn_compltn_status_code ) as ReservationCompletionStatus,

      -- Text Associations
      @Analytics.hidden: true
      @Consumption.hidden: true
      @Search.defaultSearchElement: true
      @Search.ranking: #HIGH
      dd07l.domvalue_l                                            as DomainValue,

      @ObjectModel.association.type: [#TO_COMPOSITION_CHILD]
      _ResvnCompletionStatusText

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