C_RFDYOutboundDelivery

DDL: C_RFDYOUTBOUNDDELIVERY Type: view_entity CONSUMPTION

Release for Delivery Outbound Delivery

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

Data Sources (1)

SourceAliasJoin Type
I_OutboundDelivery I_OutboundDelivery from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
EndUserText.label Release for Delivery Outbound Delivery view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY OutboundDelivery OutboundDelivery LE Delivery
CreationDate CreationDate Time Stamp
CreatedByUser CreatedByUser User Name

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_RFDYOutboundDelivery.
-- 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_RFDYOutboundDelivery AS
SELECT
  OutboundDelivery,
  CreationDate,
  CreatedByUser
FROM I_OutboundDelivery
;