I_DeliveryPickViewShpPoint

DDL: I_DELIVERYPICKVIEWSHPPOINT SQL: IDELIVERYPICKSHP Type: view COMPOSITE

Delivery Pick View

I_DeliveryPickViewShpPoint is a Composite CDS View that provides data about "Delivery Pick View" in SAP S/4HANA. It reads from 1 data source (I_ShippingPoint) and exposes 3 fields with key field ShippingPoint.

Data Sources (1)

SourceAliasJoin Type
I_ShippingPoint I_ShippingPoint from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName IDELIVERYPICKSHP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Delivery Pick View view
VDM.viewType #COMPOSITE view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ShippingPoint I_ShippingPoint ShippingPoint Shipping Point
PickingConfirmation I_ShippingPoint PickingConfirmation Pick Confirmat.
_Text I_ShippingPoint _Text

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 I_DeliveryPickViewShpPoint.
-- 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: IDELIVERYPICKSHP

CREATE VIEW I_DeliveryPickViewShpPoint AS
SELECT
  I_ShippingPoint.ShippingPoint AS ShippingPoint,
  I_ShippingPoint.PickingConfirmation AS PickingConfirmation,
  I_ShippingPoint._Text AS _Text
FROM I_ShippingPoint
;