I_FMEAFailureNet
FMEA Failure Mode Net
I_FMEAFailureNet is a Composite CDS View that provides data about "FMEA Failure Mode Net" in SAP S/4HANA. It reads from 3 data sources (I_FMEANode, I_FMEANode, I_FMEANode) and exposes 3 fields with key fields FMEAHeaderUUID, FMEANodeUUID, FMEANodeReferenceUUID.
Data Sources (3)
| Source | Alias | Join Type |
|---|---|---|
| I_FMEANode | _FMEANodeCause | left_outer |
| I_FMEANode | _FMEANodeReference | left_outer |
| I_FMEANode | _FMEANodeRoot | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IFMEAFAILNET | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | FMEA Failure Mode 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 |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | FMEAHeaderUUID | I_FMEANode | FMEAHeaderUUID | |
| KEY | FMEANodeUUID | I_FMEANode | FMEANodeUUID | |
| KEY | FMEANodeReferenceUUID |
@AbapCatalog.sqlViewName: 'IFMEAFAILNET'
@AbapCatalog.compiler.compareFilter: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'FMEA Failure Mode Net'
@VDM.viewType: #COMPOSITE
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@ObjectModel.usageType: {
dataClass: #TRANSACTIONAL,
sizeCategory: #M,
serviceQuality: #B
}
define view I_FMEAFailureNet as select from I_FMEANode as _FMEANodeRoot
left outer join I_FMEANode as _FMEANodeReference
on _FMEANodeRoot.FMEANodeUUID = _FMEANodeReference.FMEANodeReferenceUUID
left outer join I_FMEANode as _FMEANodeCause
on _FMEANodeReference.FMEANodeUUID = _FMEANodeCause.FMEANodeReferenceUUID
{
key _FMEANodeRoot.FMEAHeaderUUID,
key _FMEANodeRoot.FMEANodeUUID,
key _FMEANodeCause._FMEANodeParent.FMEAParentNodeUUID as FMEANodeReferenceUUID
} where _FMEANodeRoot.FMEAItemType = '803'
and _FMEANodeReference.FMEAItemType = '821'
and _FMEANodeCause.FMEAItemType = '804'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_FMEANODE",
"I_FMEANODEHIERARCHY"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA