I_FldLogsAggrgBatchStockQty

DDL: I_FLDLOGSAGGRGBATCHSTOCKQTY SQL: IFLAGGSTK Type: view COMPOSITE

Aggr stock qty for batch material

I_FldLogsAggrgBatchStockQty is a Composite CDS View that provides data about "Aggr stock qty for batch material" in SAP S/4HANA. It reads from 1 data source (I_FldLogsBatchStockQty) and exposes 6 fields with key fields Material, FldLogsRemotePlant, RemoteStorageLocation, Batch, WBSElementInternalID.

Data Sources (1)

SourceAliasJoin Type
I_FldLogsBatchStockQty I_FldLogsBatchStockQty from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName IFLAGGSTK view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #C view
VDM.viewType #COMPOSITE view
EndUserText.label Aggr stock qty for batch material view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Material Material Vehicle Model
KEY FldLogsRemotePlant FldLogsRemotePlant Plant
KEY RemoteStorageLocation RemoteStorageLocation Stor. Location SID
KEY Batch Batch Lot No.
KEY WBSElementInternalID WBSElementInternalID WBS Internal ID
FldLogsRemoteQuantity

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_FldLogsAggrgBatchStockQty.
-- 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: IFLAGGSTK

CREATE VIEW I_FldLogsAggrgBatchStockQty AS
SELECT
  Material,
  FldLogsRemotePlant,
  RemoteStorageLocation,
  Batch,
  WBSElementInternalID,
  sum(FldLogsRemoteQuantity) AS FldLogsRemoteQuantity
FROM I_FldLogsBatchStockQty
;