I_FldLogsTotalPackedQuantity

DDL: I_FLDLOGSTOTALPACKEDQUANTITY Type: view_entity COMPOSITE

Total Packed Quantity

I_FldLogsTotalPackedQuantity is a Composite CDS View that provides data about "Total Packed Quantity" in SAP S/4HANA. It reads from 1 data source (I_FldLogsShipmentItem) and exposes 8 fields with key field FldLogsReferenceDocumentNumber.

Data Sources (1)

SourceAliasJoin Type
I_FldLogsShipmentItem I_FldLogsShipmentItem from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Total Packed Quantity view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
VDM.viewType #COMPOSITE view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY FldLogsReferenceDocumentNumber FldLogsReferenceDocumentNumber Reference Doc Number
OutboundDelivery OutboundDelivery LE Delivery
DeliveryDocumentItem DeliveryDocumentItem Outb. Delivery Item
HandlingUnitQuantity HandlingUnitQuantity Packed Quantity
HandlingUnitQuantityUnit HandlingUnitQuantityUnit UoM of HU item
QuantityInBaseUnit QuantityInBaseUnit Quantity
OrderQuantityUnit OrderQuantityUnit Sales Unit
HandlingUnitHeaderQuantity

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_FldLogsTotalPackedQuantity.
-- 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_FldLogsTotalPackedQuantity AS
SELECT
  FldLogsReferenceDocumentNumber,
  OutboundDelivery,
  DeliveryDocumentItem,
  HandlingUnitQuantity,
  HandlingUnitQuantityUnit,
  QuantityInBaseUnit,
  OrderQuantityUnit,
  cast(0 as vemng) AS HandlingUnitHeaderQuantity
FROM I_FldLogsShipmentItem
;