I_PT_GlobalDelivery

DDL: I_PT_GLOBALDELIVERY Type: view_entity BASIC Package: GLO-LOG-PT

Global Deliveries for PT

I_PT_GlobalDelivery is a Basic CDS View that provides data about "Global Deliveries for PT" in SAP S/4HANA. It reads from 1 data source (sipt_obd_gd) and exposes 8 fields with key fields PortugueseGlobalDlvDocument, PortugueseIndividualDelivery, Material, PortugueseGlobalDlvSequence. Part of development package GLO-LOG-PT.

Data Sources (1)

SourceAliasJoin Type
sipt_obd_gd sipt_obd_gd from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Global Deliveries for PT view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY PortugueseGlobalDlvDocument glo_del Delivery
KEY PortugueseIndividualDelivery ind_del Delivery
KEY Material matnr Vehicle Model
KEY PortugueseGlobalDlvSequence sequence Visit Sequence
ActualDeliveryQuantity lfimg Delivery Qty
BaseUnit meins Valuation Unit
PortugueseGlobalDlvOpenQty quant_rem Delivery Qty
GoodsMovementIsCancelled cancel_ind Indicator

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_PT_GlobalDelivery.
-- 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 I_PT_GlobalDelivery AS
SELECT
  glo_del AS PortugueseGlobalDlvDocument,
  ind_del AS PortugueseIndividualDelivery,
  matnr AS Material,
  sequence AS PortugueseGlobalDlvSequence,
  lfimg AS ActualDeliveryQuantity,
  meins AS BaseUnit,
  quant_rem AS PortugueseGlobalDlvOpenQty,
  cancel_ind AS GoodsMovementIsCancelled
FROM sipt_obd_gd
;