I_FldLogsCalcdStockAtRemote

DDL: I_FLDLOGSCALCDSTOCKATREMOTE SQL: IFLDCALSTKQTY Type: view COMPOSITE Package: FLOG_RETURN_WOV

Calculated stk qty on product and plant

I_FldLogsCalcdStockAtRemote is a Composite CDS View that provides data about "Calculated stk qty on product and plant" in SAP S/4HANA. It reads from 1 data source (I_FldLogsMaterialStockQuantity) and exposes 3 fields with key fields Material, Plant. Part of development package FLOG_RETURN_WOV.

Data Sources (1)

SourceAliasJoin Type
I_FldLogsMaterialStockQuantity I_FldLogsMaterialStockQuantity from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IFLDCALSTKQTY view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Calculated stk qty on product and plant view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.serviceQuality #C view
VDM.viewType #COMPOSITE view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Material Material Vehicle Model
KEY Plant Plant Valuation Area
MaterialBaseUnit MaterialBaseUnit Valuation Unit

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_FldLogsCalcdStockAtRemote.
-- 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: IFLDCALSTKQTY

CREATE VIEW I_FldLogsCalcdStockAtRemote AS
SELECT
  Material,
  Plant,
  MaterialBaseUnit
FROM I_FldLogsMaterialStockQuantity
;