I_FldLogsMaterialText

DDL: I_FLDLOGSMATERIALTEXT SQL: IFLMATTEXT Type: view COMPOSITE

FL Return Material Text view

I_FldLogsMaterialText is a Composite CDS View that provides data about "FL Return Material Text view" in SAP S/4HANA. It reads from 3 data sources (I_FieldLogisticsPlantAll, I_FldLogsSupplierItem, I_FldLogsSupplierItem) and exposes 6 fields with key fields Material, Language, FldLogsSuplrItemUUID, Language, FldLogsSuplrItemUUID. It has 1 association to related views.

Data Sources (3)

SourceAliasJoin Type
I_FieldLogisticsPlantAll _FldLogsAllPlants inner
I_FldLogsSupplierItem I_FldLogsSupplierItem from
I_FldLogsSupplierItem I_FldLogsSupplierItem union_all

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_FldLogsMaterialTextBasic _MaterialText _MaterialText.Material = $projection.Material

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IFLMATTEXT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label FL Return Material Text view view
Search.searchable true view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #COMPOSITE view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey Material view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Material _Material Material Vehicle Model
KEY Language _MaterialText Language Report Text Language
KEY FldLogsSuplrItemUUID Suplr Item UUID
KEY Language Report Text Language
KEY FldLogsSuplrItemUUID FldLogsSuplrItemUUID Suplr Item UUID
MaterialName FldLogsSuplrItemName Suplr Item Name

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_FldLogsMaterialText.
-- 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: IFLMATTEXT

CREATE VIEW I_FldLogsMaterialText AS
SELECT
  _Material.Material AS Material,
  _MaterialText.Language AS Language,
  hextobin( '00000000000000000000000000000000' ) AS FldLogsSuplrItemUUID,
  FldLogsSuplrItemName AS MaterialName
FROM I_FldLogsSupplierItem
INNER JOIN I_FieldLogisticsPlantAll AS _FldLogsAllPlants ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_FldLogsMaterialTextBasic AS _MaterialText ON _MaterialText.Material = Material  -- association [0..*]
-- UNION ALL with additional select branch(es): I_FldLogsSupplierItem
;