I_TotCalcReturnStockQuantity

DDL: I_TOTCALCRETURNSTOCKQUANTITY SQL: TOTCALRETSTKQTY Type: view COMPOSITE

Total returned stock qty

I_TotCalcReturnStockQuantity is a Composite CDS View that provides data about "Total returned stock qty" in SAP S/4HANA. It reads from 1 data source (I_FldLogsMaterialStock) and exposes 4 fields with key fields Material, FldLogsRemotePlant.

Data Sources (1)

SourceAliasJoin Type
I_FldLogsMaterialStock I_FldLogsMaterialStock from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName TOTCALRETSTKQTY view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Total returned stock qty view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #C view
VDM.viewType #COMPOSITE view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Material Material Vehicle Model
KEY FldLogsRemotePlant FldLogsRemotePlant Plant
TotRetblQtyInBaseUnit 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_TotCalcReturnStockQuantity.
-- 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: TOTCALRETSTKQTY

CREATE VIEW I_TotCalcReturnStockQuantity AS
SELECT
  Material,
  FldLogsRemotePlant,
  TotRetblQtyInBaseUnit,
  RetblQtyBaseUnit
FROM I_FldLogsMaterialStock
;