I_ReservationHeaderStdVH

DDL: I_RESERVATIONHEADERSTDVH Type: view_entity COMPOSITE Package: MM_IM_VDM_RES

Reservation Header

I_ReservationHeaderStdVH is a Composite CDS View that provides data about "Reservation Header" in SAP S/4HANA. It reads from 1 data source (I_ReservationHeader) and exposes 4 fields with key field Reservation. Part of development package MM_IM_VDM_RES.

Data Sources (1)

SourceAliasJoin Type
I_ReservationHeader I_ReservationHeader from

Annotations (13)

NameValueLevelField
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #VALUE_HELP view
Analytics.technicalName IRH__VH view
ObjectModel.representativeKey Reservation view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
AccessControl.authorizationCheck #CHECK view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Reservation Header view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
Search.searchable true view
Consumption.ranked true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Reservation
Customer Customer
GoodsMovementType GoodsMovementType
_Customer _Customer
@VDM.viewType: #COMPOSITE

@ObjectModel.dataCategory: #VALUE_HELP
@Analytics.technicalName: 'IRH__VH'
@ObjectModel.representativeKey: 'Reservation'

@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #TRANSACTIONAL

@AccessControl.authorizationCheck: #CHECK

@Metadata.ignorePropagatedAnnotations: true

@EndUserText.label: 'Reservation Header'
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API 
@Search.searchable:true
@Consumption.ranked: true
define view entity I_ReservationHeaderStdVH as select from I_ReservationHeader {
  @Search.defaultSearchElement: true
  @Search.fuzzinessThreshold: 0.8
  @Search.ranking: #HIGH
  key cast(Reservation as vdm_imrs_reservation preserving type) as Reservation,  

  @Consumption.hidden: true
  @Search.defaultSearchElement: true
  @Search.fuzzinessThreshold: 0.8
  @Search.ranking: #LOW
  Customer,
  @Consumption.hidden: true
  @Search.defaultSearchElement: true
  @Search.fuzzinessThreshold: 0.8
  @Search.ranking: #LOW
  GoodsMovementType,

  @Consumption.hidden: true
  _Customer
}