C_HandlingUnitReservationDoc
Handling Unit Reservation Document
C_HandlingUnitReservationDoc is a Consumption CDS View that provides data about "Handling Unit Reservation Document" in SAP S/4HANA. It reads from 1 data source (I_HandlingUnitHeader) and exposes 4 fields with key fields ReservationObjectNumber, ReservationObjectType. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_HandlingUnitHeader | _HandlingUnitHeader | inner |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_HandlingUnitResDocTypeText | _HandlingUnitResDocTypeText | $projection.ReservationObjectType = _HandlingUnitResDocTypeText.ReservationObjectType |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CHURESDOC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| VDM.viewType | #CONSUMPTION | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Handling Unit Reservation Document | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ReservationObjectNumber | _HandlingUnitItemReservation | ReservationObjectNumber | |
| KEY | ReservationObjectType | _HandlingUnitItemReservation | ReservationObjectType | |
| Plant | I_HandlingUnitHeader | Plant | ||
| _HandlingUnitResDocTypeText | _HandlingUnitResDocTypeText |
@AbapCatalog.sqlViewName: 'CHURESDOC'
@ClientHandling.algorithm:#SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory : #L
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@VDM.viewType: #CONSUMPTION
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Handling Unit Reservation Document'
@AccessControl.personalData.blocking:#NOT_REQUIRED
define view C_HandlingUnitReservationDoc
as select distinct from I_HandlingUnitItemReservation as _HandlingUnitItemReservation
inner join I_HandlingUnitHeader as _HandlingUnitHeader on _HandlingUnitItemReservation.HandlingUnitInternalID = _HandlingUnitHeader.HandlingUnitInternalID
association [0..*] to I_HandlingUnitResDocTypeText as _HandlingUnitResDocTypeText on $projection.ReservationObjectType = _HandlingUnitResDocTypeText.ReservationObjectType
{
@ObjectModel.text.element: [ 'ReservationObjectType' ]
key _HandlingUnitItemReservation.ReservationObjectNumber,
key _HandlingUnitItemReservation.ReservationObjectType,
_HandlingUnitHeader.Plant,
_HandlingUnitResDocTypeText
}
where
_HandlingUnitItemReservation.ReservationObjectNumber is not null
and _HandlingUnitItemReservation.ReservationObjectType is not null
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