C_HandlingUnitReservationDoc

DDL: C_HANDLINGUNITRESERVATIONDOC SQL: CHURESDOC Type: view CONSUMPTION

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)

SourceAliasJoin Type
I_HandlingUnitHeader _HandlingUnitHeader inner

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_HandlingUnitResDocTypeText _HandlingUnitResDocTypeText $projection.ReservationObjectType = _HandlingUnitResDocTypeText.ReservationObjectType

Annotations (12)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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