I_FMEAText
Text of FMEA
I_FMEAText is a Basic CDS View that provides data about "Text of FMEA" in SAP S/4HANA. It reads from 1 data source (cgpl_text) and exposes 4 fields with key fields Language, FMEAHeaderUUID. It has 1 association to related views. Part of development package PLM_FMEA.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| cgpl_text | cgpl_text | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_FailureModeEffectAnalysis | _FailureModeEffectAnalysis | $projection.FMEAHeaderUUID = _FailureModeEffectAnalysis.FMEAHeaderUUID |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Text of FMEA | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | FMEAHeaderUUID | view | |
| Analytics.technicalName | IFMEATXT | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | langu | ||
| KEY | FMEAHeaderUUID | |||
| FMEADescription | text1 | |||
| _FailureModeEffectAnalysis | _FailureModeEffectAnalysis |
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Text of FMEA'
@ObjectModel: {
usageType: {
serviceQuality: #B,
sizeCategory: #M,
dataClass: #TRANSACTIONAL },
dataCategory: #TEXT,
representativeKey: 'FMEAHeaderUUID'
}
@Analytics.technicalName: 'IFMEATXT'
define view entity I_FMEAText as select from cgpl_text
association [0..1] to I_FailureModeEffectAnalysis as _FailureModeEffectAnalysis
on $projection.FMEAHeaderUUID = _FailureModeEffectAnalysis.FMEAHeaderUUID
{
@Semantics.language: true
key langu as Language,
key cast( cgpl_text.guid as plmt_fmea_node_guid preserving type ) as FMEAHeaderUUID,
@Semantics.text: true
text1 as FMEADescription,
_FailureModeEffectAnalysis
}
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