I_FMEANodeUsage

DDL: I_FMEANODEUSAGE Type: view_entity COMPOSITE Package: PLM_FMEA

Usages for FMEA as Reference

I_FMEANodeUsage is a Composite CDS View that provides data about "Usages for FMEA as Reference" in SAP S/4HANA. It reads from 1 data source (I_FMEANode) and exposes 2 fields with key field FMEANodeUUID. Part of development package PLM_FMEA.

Data Sources (1)

SourceAliasJoin Type
I_FMEANode I_FMEANode from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label Usages for FMEA as Reference view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY FMEANodeUUID I_FMEANode FMEANodeUUID
FMEANodeNumberOfUsages

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_FMEANodeUsage.
-- 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_FMEANodeUsage AS
SELECT
  I_FMEANode.FMEANodeUUID AS FMEANodeUUID,
  count( distinct _FMEAReverseReference.FMEANodeUUID) AS FMEANodeNumberOfUsages
FROM I_FMEANode
;