I_ReservationCreationCode

DDL: I_RESERVATIONCREATIONCODE Type: view_entity BASIC

Reservation Creation Code

I_ReservationCreationCode is a Basic CDS View that provides data about "Reservation Creation Code" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field ReservationCreationCode. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ResvnCreationCodeText _ResvnCreationCodeText $projection.ReservationCreationCode = _ResvnCreationCodeText.ReservationCreationCode

Annotations (12)

NameValueLevelField
EndUserText.label Reservation Creation Code view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.representativeKey ReservationCreationCode view
VDM.viewType #BASIC view
Metadata.ignorePropagatedAnnotations true view
Consumption.ranked true view
Search.searchable true view
ObjectModel.dataCategory #VALUE_HELP view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ReservationCreationCode
_ResvnCreationCodeText _ResvnCreationCodeText
@EndUserText.label: 'Reservation Creation Code'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: {
                usageType: {
                             sizeCategory: #S,
                             serviceQuality: #A,
                             dataClass:#CUSTOMIZING
                           },
                resultSet.sizeCategory: #XS,
                representativeKey: 'ReservationCreationCode'
              }
@VDM: {
        viewType: #BASIC
      }
@Metadata: {
             ignorePropagatedAnnotations: true
           }
@Consumption.ranked: true
@Search.searchable: true
@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.supportedCapabilities: [#VALUE_HELP_PROVIDER]
/*+[hideWarning] { "IDS" : [ "KEY_CHECK", "CALCULATED_FIELD_CHECK" ]  } */
define view entity I_ReservationCreationCode
  as select from dd07l
  association [0..*] to I_ResvnCreationCodeText as _ResvnCreationCodeText on $projection.ReservationCreationCode = _ResvnCreationCodeText.ReservationCreationCode
{
      @ObjectModel.text.association: '_ResvnCreationCodeText'
      @Search.defaultSearchElement: true
      @Search.ranking: #HIGH
      @Search.fuzzinessThreshold: 0.8
  key cast(SUBSTRING(dd07l.domvalue_l, 1, 4) as imrs_creation_code preserving type) as ReservationCreationCode,

      //Associations

      _ResvnCreationCodeText

}
where
  (
    dd07l.domname  = 'IMRS_CREATION_CODE'
  )
  and(
    dd07l.as4local = 'A'
  );