I_FMEANodeText
Text of FMEA Node
I_FMEANodeText is a Basic CDS View that provides data about "Text of FMEA Node" in SAP S/4HANA. It reads from 2 data sources (I_FMEANodeAssignment, cgpl_text) and exposes 5 fields with key fields FMEANodeUUID, Language. It has 1 association to related views. Part of development package PLM_FMEA.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_FMEANodeAssignment | _FMEANodeAssignment | inner |
| cgpl_text | cgpl_text | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_FMEANode | _FMEANode | $projection.FMEANodeUUID = _FMEANode.FMEANodeUUID |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Text of FMEA Node | view | |
| ObjectModel.representativeKey | FMEANodeUUID | view | |
| Analytics.technicalName | IFMEANODET | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | FMEANodeUUID | |||
| KEY | Language | cgpl_text | langu | |
| FMEANode | I_FMEANodeAssignment | FMEANode | ||
| FMEANodeDescription | cgpl_text | text1 | ||
| _FMEANode | _FMEANode |
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Text of FMEA Node'
@ObjectModel.representativeKey: 'FMEANodeUUID'
@Analytics.technicalName: 'IFMEANODET'
@ObjectModel.usageType: { serviceQuality: #B, sizeCategory: #M, dataClass: #TRANSACTIONAL }
define view entity I_FMEANodeText as select from cgpl_text
inner join I_FMEANodeAssignment as _FMEANodeAssignment
on cgpl_text.guid = _FMEANodeAssignment.FMEANodeUUID
association [0..1] to I_FMEANode as _FMEANode
on $projection.FMEANodeUUID = _FMEANode.FMEANodeUUID
{
key cast( cgpl_text.guid as plmt_fmea_node_guid preserving type ) as FMEANodeUUID,
key cgpl_text.langu as Language,
_FMEANodeAssignment.FMEANode,
cgpl_text.text1 as FMEANodeDescription,
// Make association public
_FMEANode
}
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