I_FldLogsMaterialSupplyProcess

DDL: I_FLDLOGSMATERIALSUPPLYPROCESS SQL: IFLDMATSUPPLY Type: view COMPOSITE

FL:Material and Plant for Supply process

I_FldLogsMaterialSupplyProcess is a Composite CDS View that provides data about "FL:Material and Plant for Supply process" in SAP S/4HANA. It reads from 1 data source (I_FldLogsPlantBasic) and exposes 6 fields with key fields Material, Plant.

Data Sources (1)

SourceAliasJoin Type
I_FldLogsPlantBasic _FlRemotePlant inner

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IFLDMATSUPPLY view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label FL:Material and Plant for Supply process 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 (6)

KeyFieldSource TableSource FieldDescription
KEY Material
KEY Plant
IsInternalBatchManaged _mat IsInternalBatchManaged Batches
InventoryValuationCategory _mat ValuationCategory Valuation Cat.
SerialNumberProfile _mat SerialNumberProfile SerialNoProfile
SupplierPlant I_FldLogsPlantBasic SupplyingPlant Supplying Plant

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_FldLogsMaterialSupplyProcess.
-- 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: IFLDMATSUPPLY

CREATE VIEW I_FldLogsMaterialSupplyProcess AS
SELECT
  cast(_mat.Product as matnr preserving type ) AS Material,
  cast(_mat.Plant as werks_d preserving type ) AS Plant,
  _mat.IsInternalBatchManaged AS IsInternalBatchManaged,
  _mat.ValuationCategory AS InventoryValuationCategory,
  _mat.SerialNumberProfile AS SerialNumberProfile,
  _FlRemotePlant.SupplyingPlant AS SupplierPlant
INNER JOIN I_FldLogsPlantBasic AS _FlRemotePlant ON /* join condition not captured in parsed metadata */
;