I_FMEAInternalFunctionNet

DDL: I_FMEAINTERNALFUNCTIONNET Type: view_entity COMPOSITE Package: PLM_FMEA

FMEA Function Net

I_FMEAInternalFunctionNet is a Composite CDS View that provides data about "FMEA Function Net" in SAP S/4HANA. It reads from 3 data sources (I_FMEANodeHierarchy, I_FMEANode, I_FMEANode) and exposes 3 fields with key fields FMEAHeaderUUID, FMEAPreconditionUUID, FMEAFunctionUUID. It is exposed through 1 OData service (QM_FMEA_MNG_SRV_DEF). Part of development package PLM_FMEA.

Data Sources (3)

SourceAliasJoin Type
I_FMEANodeHierarchy _FMEANodeParent left_outer
I_FMEANode _FMEANodeReference left_outer
I_FMEANode _FMEANodeRoot from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label FMEA Function Net view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #B view

OData Services (1)

ServiceBindingVersionContractRelease
QM_FMEA_MNG_SRV_DEF QM_FMEA_MNG_SRV V2 C1 NOT_RELEASED

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY FMEAHeaderUUID I_FMEANode FMEAHeaderUUID
KEY FMEAPreconditionUUID I_FMEANode FMEANodeUUID
KEY FMEAFunctionUUID I_FMEANodeHierarchy FMEAParentNodeUUID

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_FMEAInternalFunctionNet.
-- 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_FMEAInternalFunctionNet AS
SELECT
  _FMEANodeRoot.FMEAHeaderUUID AS FMEAHeaderUUID,
  _FMEANodeRoot.FMEANodeUUID AS FMEAPreconditionUUID,
  _FMEANodeParent.FMEAParentNodeUUID AS FMEAFunctionUUID
FROM I_FMEANode AS _FMEANodeRoot
LEFT OUTER JOIN I_FMEANode AS _FMEANodeReference ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_FMEANodeHierarchy AS _FMEANodeParent ON /* join condition not captured in parsed metadata */
;