C_OutboundDeliveryList

DDL: C_OUTBOUNDDELIVERYLIST SQL: COUTBDELIVLIST Type: view CONSUMPTION

C_OutboundDeliveryList is a Consumption CDS View in SAP S/4HANA. It reads from 1 data source (I_DeliveryDocument) and exposes 50 fields with key field DeliveryDocument. It has 7 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_DeliveryDocument DeliveryDocument from

Associations (7)

CardinalityTargetAliasCondition
[0..*] C_DeliveryShipToPartyVH _DlvShipToPartyVH $projection.ShipToParty = _DlvShipToPartyVH.Customer
[0..1] I_DeliveryPriority _DeliveryPriority $projection.DeliveryPriority = _DeliveryPriority.DeliveryPriority
[0..1] C_ShippingPointVH _ShippingPointVH $projection.ShippingPoint = _ShippingPointVH.ShippingPoint
[0..1] C_OutboundDeliveryTypeVH _DeliveryTypeVH $projection.DeliveryDocumentType = _DeliveryTypeVH.DeliveryDocumentType
[0..1] I_User _User $projection.CreatedByUser = _User.UserID
[0..*] C_OutbDelivFirstFreightOrd _FreightOrder $projection.DeliveryDocument = _FreightOrder.DeliveryDocument
[1..1] I_DeliveryStatusValuation _StatusValuation $projection.DeliveryDocument =_StatusValuation.DeliveryDocument

Annotations (20)

NameValueLevelField
AbapCatalog.sqlViewName COUTBDELIVLIST view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
Metadata.allowExtensions true view
ObjectModel.compositionRoot true view
ObjectModel.representativeKey DeliveryDocument view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.updateEnabled true view
UI.headerInfo.typeName Manage Outbound Delivery view
UI.headerInfo.typeNamePlural Manage Outbound Deliveries view
UI.headerInfo.title.type #STANDARD view
UI.headerInfo.title.value DeliveryDocument view
UI.headerInfo.title.label Outbound Delivery view
UI.headerInfo.description.value PickingDate view

Fields (50)

KeyFieldSource TableSource FieldDescription
KEY DeliveryDocument DeliveryDocument Delivery Document
EU_DeliveryARCStatus EU_DeliveryARCStatus Excise Tax ARC Status
PickingDate PickingDate Pick Date
OverallPickingStatus OverallPickingStatus Picking Status
int1asPickingStatusCriticality
OverallPickingConfStatus OverallPickingConfStatus Confirmation Status
int1asConfirmationStatusCriticality
FreightOrder _FreightOrder FreightOrder Freight Order
OverallGoodsMovementStatus OverallGoodsMovementStatus GI Status
int1asGoodsMovementStatusCriticality
ShipToParty ShipToParty Ship-To Party (obsolete)
CustomerName
ShippingPoint ShippingPoint Shipping Point
ShippingPointName
ActualGoodsMovementDate ActualGoodsMovementDate Actual Goods Movement Date
PlannedGoodsIssueDate Planned Gds Mvmt
LoadingDate LoadingDate Loading Date
CreatedByUser CreatedByUser User Name
UserDescription _User UserDescription Full Name
DeliveryDocumentType DeliveryDocumentType Delivery Type
DeliveryTypeName
CreationDate CreationDate Time Stamp
SDDocumentCategory SDDocumentCategory Document Cat.
OverallChmlCmplncStatus OverallChmlCmplncStatus Product Marketability Status
int1asOvrlChmlCmplncStsCriticality
OverallDangerousGoodsStatus OverallDangerousGoodsStatus Dangerous Goods Status
int1asOvrlDngrsGdsStsCriticality
OverallSafetyDataSheetStatus OverallSafetyDataSheetStatus Safety Data Sheet Status
int1asOvrlSftyDataSheetStsCritlty
ReadyForWarehouseExecStatus ReadyForWarehouseExecStatus Warehouse Execution Status
DelivAdvncdShipgRcvgRlvnce DelivAdvncdShipgRcvgRlvnce Adv. Ship. & Rec. Relevance
ProposedDeliveryRoute ProposedDeliveryRoute Vehicle route
_DeliveryPriority _DeliveryPriority
_ShipToParty _ShipToParty
_ShippingPoint _ShippingPoint
_LogProcgStsPick _LogProcgStsPick
_LogProcgStsConf _LogProcgStsConf
_LogProcgStsMove _LogProcgStsMove
_DlvShipToPartyVH _DlvShipToPartyVH
_DeliveryTypeVH _DeliveryTypeVH
_ShippingPointVH _ShippingPointVH
_OverallChmlCmplncStatus _OverallChmlCmplncStatus
_OverallDangerousGoodsStatus _OverallDangerousGoodsStatus
_OvrlSftyDataSheetSts _OvrlSftyDataSheetSts
_User _User
_ExciseTaxStatus _ExciseTaxStatus
_WarehouseExecutionStatus _WarehouseExecutionStatus
_DelivAdvncdShipgRcvgRlvnce _DelivAdvncdShipgRcvgRlvnce
_ProposedDeliveryRoute _ProposedDeliveryRoute
_FreightOrder _FreightOrder

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view C_OutboundDeliveryList.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: COUTBDELIVLIST

CREATE VIEW C_OutboundDeliveryList AS
SELECT
  DeliveryDocument,
  EU_DeliveryARCStatus,
  PickingDate,
  OverallPickingStatus,
  cast( case OverallPickingStatus when '' then 0 when 'A' then 1 when 'B' then 2 when 'C' then 3 else 0 end as abap.int1 ) as PickingStatusCriticality AS int1asPickingStatusCriticality,
  OverallPickingConfStatus,
  cast( case OverallPickingConfStatus when '' then 0 when 'A' then 1 when 'B' then 2 when 'C' then 3 else 0 end as abap.int1 ) as ConfirmationStatusCriticality AS int1asConfirmationStatusCriticality,
  _FreightOrder.FreightOrder AS FreightOrder,
  OverallGoodsMovementStatus,
  cast( case OverallGoodsMovementStatus when '' then 0 when 'A' then 1 when 'B' then 2 when 'C' then 3 else 0 end as abap.int1 ) as GoodsMovementStatusCriticality AS int1asGoodsMovementStatusCriticality,
  ShipToParty,
  _Partner[1:PartnerFunction='WE']._DfltAddrRprstn.AddresseeFullName AS CustomerName,
  ShippingPoint,
  cast(_ShippingPoint._Text[1: Language=$session.system_language].ShippingPointName as bezei30) AS ShippingPointName,
  ActualGoodsMovementDate,
  cast (PlannedGoodsIssueDate as wadak_plan) AS PlannedGoodsIssueDate,
  LoadingDate,
  CreatedByUser,
  _User.UserDescription AS UserDescription,
  DeliveryDocumentType,
  cast(_DeliveryTypeVH._Text[1: Language=$session.system_language].DeliveryDocumentTypeName as vtext) AS DeliveryTypeName,
  CreationDate,
  SDDocumentCategory,
  OverallChmlCmplncStatus,
  cast( case OverallChmlCmplncStatus when '' then 0 when 'A' then 3 when 'C' then 1 when 'D' then 1 else 0 end as abap.int1 ) as OvrlChmlCmplncStsCriticality AS int1asOvrlChmlCmplncStsCriticality,
  OverallDangerousGoodsStatus,
  cast( case OverallDangerousGoodsStatus when '' then 0 when 'A' then 3 when 'B' then 2 when 'D' then 1 else 0 end as abap.int1 ) as OvrlDngrsGdsStsCriticality AS int1asOvrlDngrsGdsStsCriticality,
  OverallSafetyDataSheetStatus,
  cast( case OverallSafetyDataSheetStatus when '' then 0 when 'A' then 3 when 'B' then 2 when 'D' then 1 else 0 end as abap.int1 ) as OvrlSftyDataSheetStsCritlty AS int1asOvrlSftyDataSheetStsCritlty,
  ReadyForWarehouseExecStatus,
  DelivAdvncdShipgRcvgRlvnce,
  ProposedDeliveryRoute
FROM I_DeliveryDocument AS DeliveryDocument
LEFT OUTER JOIN C_DeliveryShipToPartyVH AS _DlvShipToPartyVH ON ShipToParty = _DlvShipToPartyVH.Customer  -- association [0..*]
LEFT OUTER JOIN I_DeliveryPriority AS _DeliveryPriority ON DeliveryPriority = _DeliveryPriority.DeliveryPriority  -- association [0..1]
LEFT OUTER JOIN C_ShippingPointVH AS _ShippingPointVH ON ShippingPoint = _ShippingPointVH.ShippingPoint  -- association [0..1]
LEFT OUTER JOIN C_OutboundDeliveryTypeVH AS _DeliveryTypeVH ON DeliveryDocumentType = _DeliveryTypeVH.DeliveryDocumentType  -- association [0..1]
LEFT OUTER JOIN I_User AS _User ON CreatedByUser = _User.UserID  -- association [0..1]
LEFT OUTER JOIN C_OutbDelivFirstFreightOrd AS _FreightOrder ON DeliveryDocument = _FreightOrder.DeliveryDocument  -- association [0..*]
LEFT OUTER JOIN I_DeliveryStatusValuation AS _StatusValuation ON DeliveryDocument =_StatusValuation.DeliveryDocument  -- association [1..1]
;