I_FldLogsRetTotalMaterialStock

DDL: I_FLDLOGSRETTOTALMATERIALSTOCK Type: view_entity COMPOSITE

Total Return Quantity with WBS

I_FldLogsRetTotalMaterialStock is a Composite CDS View that provides data about "Total Return Quantity with WBS" in SAP S/4HANA. It reads from 1 data source (I_FldLogsReturnItem) and exposes 6 fields with key fields Material, FldLogsRemotePlant, RemoteStorageLocation, WBSElementInternalID.

Data Sources (1)

SourceAliasJoin Type
I_FldLogsReturnItem I_FldLogsReturnItem from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Total Return Quantity with WBS view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #COMPOSITE view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Material Material Vehicle Model
KEY FldLogsRemotePlant FldLogsRemotePlant Plant
KEY RemoteStorageLocation RemoteStorageLocation
KEY WBSElementInternalID WBSElementInternalID WBS Internal ID
TotRetblQtyInBaseUnit
RetblQtyBaseUnit RetblQtyBaseUnit

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_FldLogsRetTotalMaterialStock.
-- 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_FldLogsRetTotalMaterialStock AS
SELECT
  Material,
  FldLogsRemotePlant,
  RemoteStorageLocation,
  WBSElementInternalID,
  sum(RetblQtyInBaseUnit) AS TotRetblQtyInBaseUnit,
  RetblQtyBaseUnit
FROM I_FldLogsReturnItem
;