C_EWM_ODOHeaderLabelFDP

DDL: C_EWM_ODOHEADERLABELFDP Type: view_entity CONSUMPTION

FormDataProvider for Whse ODO Header Lbl

C_EWM_ODOHeaderLabelFDP is a Consumption CDS View that provides data about "FormDataProvider for Whse ODO Header Lbl" in SAP S/4HANA. It reads from 1 data source (P_EWM_ODOHeaderLabel) and exposes 33 fields with key fields EWMWarehouse, OutboundDeliveryOrder. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
P_EWM_ODOHeaderLabel P_EWM_ODOHeaderLabel from

Associations (1)

CardinalityTargetAliasCondition
[1] E_EWM_WhseOutbDeliveryOrder _Extension $projection.OutboundDeliveryOrderUUID = _Extension.OutboundDeliveryOrderUUID

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
VDM.viewType #CONSUMPTION view
EndUserText.label FormDataProvider for Whse ODO Header Lbl view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view

Fields (33)

KeyFieldSource TableSource FieldDescription
KEY EWMWarehouse EWMWarehouse Warehouse No.
KEY OutboundDeliveryOrder EWMOutboundDeliveryOrder Document Number
EWMDeliveryDocumentCategory EWMDeliveryDocumentCategory Doc. Category
OutboundDeliveryOrderUUID OutboundDeliveryOrderUUID Document ID
IncotermsPart1 IncotermsPart1 Incoterms
IncotermsPart2 IncotermsPart2 Incoterms 2
OutboundDelivery OutboundDelivery LE Delivery
PlannedDeliveryUTCDateTime PlannedDeliveryUTCDateTime Planned Delivery Date
EWMDeliveryCreationUTCDateTime EWMDeliveryCreationUTCDateTime
WarehouseTimeZone WarehouseTimeZone Time Zone
ShipToParty ShipToParty Ship-To Party (obsolete)
ShipToPartyName ShipToPartyName Ship-To Party Name
EWMRoute EWMRoute Route
Carrier Carrier Service Agent
CarrierName CarrierName Carrier Name
SoldToParty
SoldToPartyName
ShippingCondition
ShippingConditionName
EWMWhseReqGrossWeight
EWMWhseReqGrossWeightUnit
EWMWhseReqGrossVolume
EWMWhseReqGrossVolumeUnit
DeliveryHeaderNetWeight
DeliveryHeaderNetWeightUnit
DeliveryHeaderNetVolume
DeliveryHeaderNetVolumeUnit
ShipFromPartyAddressLine1Text Address of Ship-From Party (Line 1)
ShipFromPartyAddressLine2Text Address of Ship-From Party (Line 2)
ShipFromPartyAddressLine3Text Address of Ship-From Party (Line 3)
ShipFromPartyAddressLine4Text Address of Ship-From Party (Line 4)
WrhsTmZnListPrintDate
WrhsTmZnListPrintTime

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_EWM_ODOHeaderLabelFDP.
-- 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.

CREATE VIEW C_EWM_ODOHeaderLabelFDP AS
SELECT
  EWMWarehouse,
  EWMOutboundDeliveryOrder AS OutboundDeliveryOrder,
  EWMDeliveryDocumentCategory,
  OutboundDeliveryOrderUUID,
  IncotermsPart1,
  IncotermsPart2,
  OutboundDelivery,
  PlannedDeliveryUTCDateTime,
  EWMDeliveryCreationUTCDateTime,
  WarehouseTimeZone,
  ShipToParty,
  ShipToPartyName,
  EWMRoute,
  Carrier,
  CarrierName,
  cast( abap.char' ' as /scdl/dl_partyno preserving type) AS SoldToParty,
  cast( abap.char' ' as /scdl/dl_text preserving type) AS SoldToPartyName,
  cast( abap.char' ' as /scdl/dl_service_level_code preserving type ) AS ShippingCondition,
  cast( abap.char' ' as /scdl/dl_text preserving type) AS ShippingConditionName,
  cast( 0 as /scdl/dl_quantity ) AS EWMWhseReqGrossWeight,
  cast( ' ' as /scdl/dl_uom ) AS EWMWhseReqGrossWeightUnit,
  cast( 0 as /scdl/dl_quantity ) AS EWMWhseReqGrossVolume,
  cast( ' ' as /scdl/dl_uom ) AS EWMWhseReqGrossVolumeUnit,
  cast( 0 as /scdl/dl_quantity ) AS DeliveryHeaderNetWeight,
  cast( ' ' as /scdl/dl_uom ) AS DeliveryHeaderNetWeightUnit,
  cast( 0 as /scdl/dl_quantity ) AS DeliveryHeaderNetVolume,
  cast( ' ' as /scdl/dl_uom ) AS DeliveryHeaderNetVolumeUnit,
  cast( abap.char' ' as /scdl/dl_text preserving type) AS ShipFromPartyAddressLine1Text,
  cast( abap.char' ' as /scdl/dl_text preserving type) AS ShipFromPartyAddressLine2Text,
  cast( abap.char' ' as /scdl/dl_text preserving type) AS ShipFromPartyAddressLine3Text,
  cast( abap.char' ' as /scdl/dl_text preserving type) AS ShipFromPartyAddressLine4Text,
  cast( abap.dats'00000000' as datum preserving type ) AS WrhsTmZnListPrintDate,
  cast( abap.tims'000000' as tims preserving type ) AS WrhsTmZnListPrintTime
FROM P_EWM_ODOHeaderLabel
LEFT OUTER JOIN E_EWM_WhseOutbDeliveryOrder AS _Extension ON OutboundDeliveryOrderUUID = _Extension.OutboundDeliveryOrderUUID  -- association [1]
;