C_JITOutboundDeliveryVH

DDL: C_JITOUTBOUNDDELIVERYVH Type: view_entity CONSUMPTION

Outbound Delivery

C_JITOutboundDeliveryVH is a Consumption CDS View that provides data about "Outbound Delivery" in SAP S/4HANA. It reads from 1 data source (I_OutboundDelivery) and exposes 4 fields with key field OutboundDelivery.

Data Sources (1)

SourceAliasJoin Type
I_OutboundDelivery I_OutboundDelivery from

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Outbound Delivery view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #CONSUMPTION view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey OutboundDelivery view
Search.searchable true view
Consumption.ranked true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY OutboundDelivery OutboundDelivery Outbound Delivery
ShippingPoint ShippingPoint Shipping Point
CreationDate CreationDate Time Stamp
DeliveryDocument

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_JITOutboundDeliveryVH.
-- 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_JITOutboundDeliveryVH AS
SELECT
  OutboundDelivery,
  ShippingPoint,
  CreationDate,
  ltrim(OutboundDelivery, '0') AS DeliveryDocument
FROM I_OutboundDelivery
;