I_FldLogsDmndPlntForKeySupPlnt

DDL: I_FLDLOGSDMNDPLNTFORKEYSUPPLNT Type: view_entity COMPOSITE

FL Demand Plant for Supply Plant

I_FldLogsDmndPlntForKeySupPlnt is a Composite CDS View that provides data about "FL Demand Plant for Supply Plant" in SAP S/4HANA. It reads from 1 data source (I_FldLogsPlantBasic) and exposes 3 fields with key field FldLogsRemotePlant. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_FldLogsPlantBasic I_FldLogsPlantBasic from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Plant _PlantText $projection.FldLogsRemotePlant = _PlantText.Plant

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label FL Demand Plant for Supply Plant view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #COMPOSITE view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY FldLogsRemotePlant Plant Valuation Area
PlantName _PlantText PlantName Plant Name
SupplyingPlant 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_FldLogsDmndPlntForKeySupPlnt.
-- 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_FldLogsDmndPlntForKeySupPlnt AS
SELECT
  Plant AS FldLogsRemotePlant,
  _PlantText.PlantName AS PlantName,
  SupplyingPlant
FROM I_FldLogsPlantBasic
LEFT OUTER JOIN I_Plant AS _PlantText ON FldLogsRemotePlant = _PlantText.Plant  -- association [0..1]
;