C_HandlingUnitReservation
Handling Unit Tentative Reservation
C_HandlingUnitReservation is a Consumption CDS View that provides data about "Handling Unit Tentative Reservation" in SAP S/4HANA. It reads from 1 data source (I_HandlingUnitHeader) and exposes 5 fields. It has 1 association to related views. Part of development package LOHUM_ODATA_UI_MHU.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_HandlingUnitHeader | _HandlingUnitHeader | inner |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_HandlingUnitObjectKeyType | _HandlingUnitObjectKeyType | _HandlingUnitObjectKeyType.HandlingUnitObjectKeyType = $projection.ReservationObjectType |
Annotations (19)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CHANDLINGUNITRES | view | |
| VDM.viewType | #CONSUMPTION | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AccessControl.personalData.blocking | #BLOCKED_DATA_EXCLUDED | view | |
| Search.searchable | true | view | |
| UI.headerInfo.typeName | Tentative Reservation | view | |
| UI.headerInfo.typeNamePlural | Tentative Reservations | view | |
| UI.headerInfo.title.type | #STANDARD | view | |
| UI.headerInfo.title.value | Tentative Reservation | view | |
| UI.headerInfo.description.type | #STANDARD | view | |
| UI.headerInfo.description.value | Tentative Reservation | view | |
| EndUserText.label | Handling Unit Tentative Reservation | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| ReservationObjectType | HandlingUnitItemReservation | ReservationObjectType | ||
| ReservationObjectNumber | HandlingUnitItemReservation | ReservationObjectNumber | ||
| Plant | I_HandlingUnitHeader | Plant | ||
| LastChangeDateTime | HandlingUnitItemReservation | LastChangeDateTime | ||
| _HandlingUnitObjectKeyType | _HandlingUnitObjectKeyType |
@AbapCatalog.sqlViewName: 'CHANDLINGUNITRES'
@VDM.viewType: #CONSUMPTION
@ClientHandling.algorithm:#SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory: #XL
@AccessControl: {
authorizationCheck: #CHECK,
personalData.blocking: #BLOCKED_DATA_EXCLUDED
}
@Search.searchable: true
@UI.presentationVariant:{
sortOrder: [
{ by: 'ReservationObjectNumber' , direction: #DESC }]}
@UI.headerInfo: {
typeName: 'Tentative Reservation',
typeNamePlural: 'Tentative Reservations',
title: {
type: #STANDARD,
value: 'Tentative Reservation'
},
description: {
type: #STANDARD,
value: 'Tentative Reservation'
}
}
@EndUserText.label: 'Handling Unit Tentative Reservation'
define view C_HandlingUnitReservation
as select distinct from I_HandlingUnitItemReservation as HandlingUnitItemReservation
inner join I_HandlingUnitHeader as _HandlingUnitHeader on HandlingUnitItemReservation.HandlingUnitInternalID = _HandlingUnitHeader.HandlingUnitInternalID
association [0..1] to I_HandlingUnitObjectKeyType as _HandlingUnitObjectKeyType on _HandlingUnitObjectKeyType.HandlingUnitObjectKeyType = $projection.ReservationObjectType
{
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold : 0.8
HandlingUnitItemReservation.ReservationObjectType,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold : 0.8
HandlingUnitItemReservation.ReservationObjectNumber,
_HandlingUnitHeader.Plant,
HandlingUnitItemReservation.LastChangeDateTime,
// Associations
_HandlingUnitObjectKeyType
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA