I_FldLogsKitPurrOrderShptItem

DDL: I_FLDLOGSKITPURRORDERSHPTITEM Type: view_entity COMPOSITE Package: FLOG_SHIPMENT_PACKCTN

Kit Purchase Order Shipment Item

I_FldLogsKitPurrOrderShptItem is a Composite CDS View that provides data about "Kit Purchase Order Shipment Item" in SAP S/4HANA. It reads from 1 data source (I_FldLogsKitShipmentItem) and exposes 8 fields with key fields FieldLogisticsKitItemUUID, FieldLogisticsKitHeaderUUID. Part of development package FLOG_SHIPMENT_PACKCTN.

Data Sources (1)

SourceAliasJoin Type
I_FldLogsKitShipmentItem I_FldLogsKitShipmentItem from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Kit Purchase Order Shipment Item view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #COMPOSITE view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY FieldLogisticsKitItemUUID FieldLogisticsKitItemUUID Kit Item ID
KEY FieldLogisticsKitHeaderUUID FieldLogisticsKitHeaderUUID kit header id
FldLogsKitItmRefDocument1UUID FldLogsKitItmRefDocument1UUID kit ref UUID
FldLogsContainerUnitUUID FldLogsContainerUnitUUID Container Unit ID
FldLogsReferenceDocumentNumber FldLogsReferenceDocumentNumber Reference Doc Number
DeliveryDocument DeliveryDocument Outbound Delivery
OutboundDelivery OutboundDelivery LE Delivery
DeliveryDocumentItem DeliveryDocumentItem Outb. Delivery Item

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_FldLogsKitPurrOrderShptItem.
-- 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_FldLogsKitPurrOrderShptItem AS
SELECT
  FieldLogisticsKitItemUUID,
  FieldLogisticsKitHeaderUUID,
  FldLogsKitItmRefDocument1UUID,
  FldLogsContainerUnitUUID,
  FldLogsReferenceDocumentNumber,
  DeliveryDocument,
  OutboundDelivery,
  DeliveryDocumentItem
FROM I_FldLogsKitShipmentItem
;