C_OutbDelivFirstFreightOrd

DDL: C_OUTBDELIVFIRSTFREIGHTORD Type: view_entity CONSUMPTION Package: INT_TM_EMB_LE

Freight Order of an Outbound Delivery

C_OutbDelivFirstFreightOrd is a Consumption CDS View that provides data about "Freight Order of an Outbound Delivery" in SAP S/4HANA. It reads from 1 data source (I_OutbDelivFirstFreightOrd) and exposes 4 fields with key fields FreightOrder, DeliveryDocument. It has 1 association to related views. Part of development package INT_TM_EMB_LE.

Data Sources (1)

SourceAliasJoin Type
I_OutbDelivFirstFreightOrd dlv_by_freightorder from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_DeliveryDocument _Delivery $projection.DeliveryDocument = _Delivery.DeliveryDocument

Annotations (6)

NameValueLevelField
EndUserText.label Freight Order of an Outbound Delivery view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
AccessControl.authorizationCheck #CHECK view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY FreightOrder I_OutbDelivFirstFreightOrd FreightOrder Freight Order
KEY DeliveryDocument I_OutbDelivFirstFreightOrd DeliveryDocument Outbound Delivery
TransportationOrderType I_OutbDelivFirstFreightOrd TransportationOrderType
ShippingPoint _Delivery ShippingPoint
@EndUserText.label: 'Freight Order of an Outbound Delivery'
@VDM.viewType: #CONSUMPTION
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory: #XL
@AccessControl.authorizationCheck: #CHECK

define view entity C_OutbDelivFirstFreightOrd
  as select from I_OutbDelivFirstFreightOrd as dlv_by_freightorder
  association [0..*] to I_DeliveryDocument as _Delivery on $projection.DeliveryDocument = _Delivery.DeliveryDocument
{
      @EndUserText.label: 'Freight Order'
  key dlv_by_freightorder.FreightOrder            as FreightOrder,
      @EndUserText.label: 'Outbound Delivery'
  key dlv_by_freightorder.DeliveryDocument        as DeliveryDocument,
      @UI.hidden: true
      dlv_by_freightorder.TransportationOrderType as TransportationOrderType,
      @UI.hidden: true
      _Delivery.ShippingPoint                     as ShippingPoint

}