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.
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 (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IFMEATXT | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | 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 |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | langu | ||
| KEY | FMEAHeaderUUID | |||
| FMEADescription | text1 | |||
| _FailureModeEffectAnalysis | _FailureModeEffectAnalysis |
@AbapCatalog.sqlViewName: 'IFMEATXT'
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Text of FMEA'
@ObjectModel: {
usageType: {
serviceQuality: #B,
sizeCategory: #M,
dataClass: #TRANSACTIONAL },
dataCategory: #TEXT,
representativeKey: 'FMEAHeaderUUID'
}
define view 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
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"CGPL_TEXT"
],
"ASSOCIATED":
[
"I_FAILUREMODEEFFECTANALYSIS"
],
"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