I_FldLogsSupplyProcess

DDL: I_FLDLOGSSUPPLYPROCESS SQL: IFLDSUPPROCESS Type: view COMPOSITE

FL - Supply Process Derivation

I_FldLogsSupplyProcess is a Composite CDS View that provides data about "FL - Supply Process Derivation" in SAP S/4HANA. It reads from 2 data sources (I_SupplierPlantMRPType, I_FldLogsSupplyProcessDrvtn) and exposes 4 fields with key fields Plant, Material, OrderType.

Data Sources (2)

SourceAliasJoin Type
I_SupplierPlantMRPType _base inner
I_FldLogsSupplyProcessDrvtn _flogSproc inner

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IFLDSUPPROCESS view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label FL - Supply Process Derivation view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #C view
VDM.viewType #COMPOSITE view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.personalData.blocking #NOT_REQUIRED view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Plant _remote Plant Valuation Area
KEY Material _remote Material Vehicle Model
KEY OrderType I_FldLogsSupplyProcessDrvtn OrderType Order Type
FldLogsSupplyProcess I_FldLogsSupplyProcessDrvtn FldLogsSupplyProcess Supply Process

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_FldLogsSupplyProcess.
-- 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: IFLDSUPPROCESS

CREATE VIEW I_FldLogsSupplyProcess AS
SELECT
  _remote.Plant AS Plant,
  _remote.Material AS Material,
  _flogSproc.OrderType AS OrderType,
  _flogSproc.FldLogsSupplyProcess AS FldLogsSupplyProcess
INNER JOIN I_SupplierPlantMRPType AS _base ON /* join condition not captured in parsed metadata */
INNER JOIN I_FldLogsSupplyProcessDrvtn AS _flogSproc ON /* join condition not captured in parsed metadata */
;