I_REReservationObjectType

DDL: I_RERESERVATIONOBJECTTYPE SQL: IRERESVNOBJTYPE Type: view BASIC

Reservation Object Type

I_REReservationObjectType is a Basic CDS View that provides data about "Reservation Object Type" in SAP S/4HANA. It reads from 1 data source (tivorrsobjtype) and exposes 10 fields with key field REReservationObjectType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
tivorrsobjtype tivorrsobjtype from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_REReservationObjectTypeText _Text $projection.REReservationObjectType = _Text.REReservationObjectType

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IRERESVNOBJTYPE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Reservation Object Type view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.preserveKey true view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY REReservationObjectType rsobjtype
REResvnAvailabilityType ortype
REResvnMinTimeUnit mintimeunit
REResvnExternalInternal extintind
REResvnIsSettled settleind
REResvnOccupant defroleoccupant
REResvnResponsible defrolersrespons
RENumberOfFrequencyUnits frequency
REFrequencyUnit
_Text _Text
@AbapCatalog.sqlViewName: 'IRERESVNOBJTYPE'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Reservation Object Type'
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.representativeKey: ['REReservationObjectType']
@ObjectModel.semanticKey: ['REReservationObjectType']
//@ClientDependent: true

@VDM.viewType: #BASIC
//@Search.searchable: true

@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.preserveKey:true

define view I_REReservationObjectType
  as select from tivorrsobjtype
  association [0..*] to I_REReservationObjectTypeText as _Text on $projection.REReservationObjectType = _Text.REReservationObjectType
{
      @ObjectModel.text.association: '_Text'
  key rsobjtype        as REReservationObjectType,
      ortype           as REResvnAvailabilityType,
      mintimeunit      as REResvnMinTimeUnit,
      extintind        as REResvnExternalInternal,
      settleind        as REResvnIsSettled,
      defroleoccupant  as REResvnOccupant,
      defrolersrespons as REResvnResponsible,
      frequency        as RENumberOfFrequencyUnits,
      cast ( frequencyunit as recdvdmfrequencyunit )   as REFrequencyUnit,

      _Text
}