I_FMEANodeText

DDL: I_FMEANODETEXT SQL: IFMEANODET Type: view BASIC

Text of FMEA Node

I_FMEANodeText is a Basic CDS View that provides data about "Text of FMEA Node" in SAP S/4HANA. It reads from 2 data sources (I_FMEANodeAssignment, cgpl_text) and exposes 5 fields with key fields FMEANodeUUID, Language. It has 1 association to related views.

Data Sources (2)

SourceAliasJoin Type
I_FMEANodeAssignment _FMEANodeAssignment inner
cgpl_text cgpl_text from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_FMEANode _FMEANode $projection.FMEANodeUUID = _FMEANode.FMEANodeUUID

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IFMEANODET view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Text of FMEA Node view
ObjectModel.representativeKey FMEANodeUUID view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY FMEANodeUUID
KEY Language langu Primary lang.
FMEANode I_FMEANodeAssignment FMEANode WEBGUI External ID
FMEANodeDescription text1 Vertikalization Text
_FMEANode _FMEANode

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_FMEANodeText.
-- 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: IFMEANODET

CREATE VIEW I_FMEANodeText AS
SELECT
  cast( cgpl_text.guid as plmt_fmea_node_guid preserving type ) AS FMEANodeUUID,
  langu AS Language,
  _FMEANodeAssignment.FMEANode AS FMEANode,
  text1 AS FMEANodeDescription
FROM cgpl_text
INNER JOIN I_FMEANodeAssignment AS _FMEANodeAssignment ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_FMEANode AS _FMEANode ON FMEANodeUUID = _FMEANode.FMEANodeUUID  -- association [0..1]
;