I_FldLogsKitOutbDelivAggrgdQty

DDL: I_FLDLOGSKITOUTBDELIVAGGRGDQTY Type: view_entity COMPOSITE

Kit Outbound Delivery Item Aggregated Quantity

I_FldLogsKitOutbDelivAggrgdQty is a Composite CDS View that provides data about "Kit Outbound Delivery Item Aggregated Quantity" in SAP S/4HANA. It reads from 1 data source (I_FldLogsKitOutbDelivItmRef) and exposes 3 fields with key fields PurchasingDocument, PurchasingDocumentItem.

Data Sources (1)

SourceAliasJoin Type
I_FldLogsKitOutbDelivItmRef I_FldLogsKitOutbDelivItmRef from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Kit Outbound Delivery Item Aggregated Quantity view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #COMPOSITE view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY PurchasingDocument PurchasingDocument Purchasing Document
KEY PurchasingDocumentItem PurchasingDocumentItem Purchasing Doc. Item
NumberOfReceivedParts Base quantity

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_FldLogsKitOutbDelivAggrgdQty.
-- 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_FldLogsKitOutbDelivAggrgdQty AS
SELECT
  PurchasingDocument,
  PurchasingDocumentItem,
  sum(cast(ActualDeliveryQuantity as abap.dec( 13, 3 ))) AS NumberOfReceivedParts
FROM I_FldLogsKitOutbDelivItmRef
;