I_FMEARating

DDL: I_FMEARATING Type: view_entity BASIC Package: PLM_FMEA

Rating for FMEA

I_FMEARating is a Basic CDS View that provides data about "Rating for FMEA" in SAP S/4HANA. It reads from 1 data source (plmc_class_code) and exposes 4 fields with key fields FMEARatingProfile, FMEARating. It has 2 associations to related views. Part of development package PLM_FMEA.

Data Sources (1)

SourceAliasJoin Type
plmc_class_code plmc_class_code from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_FMEARatingProfile _FMEARatingProfile $projection.FMEARatingProfile = _FMEARatingProfile.FMEARatingProfile
[0..*] I_FMEARatingText _Text $projection.FMEARatingProfile = _Text.FMEARatingProfile and $projection.FMEARating = _Text.FMEARating

Annotations (6)

NameValueLevelField
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Rating for FMEA view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY FMEARatingProfile class User Group
KEY FMEARating class_code Rating
_FMEARatingProfile _FMEARatingProfile
_Text _Text

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_FMEARating.
-- 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_FMEARating AS
SELECT
  class AS FMEARatingProfile,
  class_code AS FMEARating
FROM plmc_class_code
LEFT OUTER JOIN I_FMEARatingProfile AS _FMEARatingProfile ON FMEARatingProfile = _FMEARatingProfile.FMEARatingProfile  -- association [0..1]
LEFT OUTER JOIN I_FMEARatingText AS _Text ON FMEARatingProfile = _Text.FMEARatingProfile AND FMEARating = _Text.FMEARating  -- association [0..*]
;