C_FMEAHeaderVH

DDL: C_FMEAHEADERVH Type: view_entity CONSUMPTION

FMEA Search

C_FMEAHeaderVH is a Consumption CDS View that provides data about "FMEA Search" in SAP S/4HANA. It reads from 1 data source (I_FailureModeEffectAnalysisTP) and exposes 7 fields with key field FMEAHeaderUUID.

Data Sources (1)

SourceAliasJoin Type
I_FailureModeEffectAnalysisTP I_FailureModeEffectAnalysisTP from

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
VDM.viewType #CONSUMPTION view
EndUserText.label FMEA Search view
ObjectModel.representativeKey FMEAHeaderUUID view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view
Consumption.ranked true view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY FMEAHeaderUUID FMEAHeaderUUID
FMEAHeader FMEAHeader
FMEAType FMEAType
FMEASearchTermValue FMEASearchTermValue
FMEAIsHeaderFMEA FMEAIsHeaderFMEA
FMEAAuthorizationGroup FMEAAuthorizationGroup
FMEAInCurLangDescription FMEAInCurLangDescription

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 C_FMEAHeaderVH.
-- 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 C_FMEAHeaderVH AS
SELECT
  FMEAHeaderUUID,
  FMEAHeader,
  FMEAType,
  FMEASearchTermValue,
  FMEAIsHeaderFMEA,
  FMEAAuthorizationGroup,
  FMEAInCurLangDescription
FROM I_FailureModeEffectAnalysisTP
;