I_FMEATaskText
Text of an FMEA Task
I_FMEATaskText is a Basic CDS View that provides data about "Text of an FMEA Task" in SAP S/4HANA. It reads from 2 data sources (cgpl_project, cgpl_text) and exposes 5 fields with key fields FMEATaskUUID, Language. It has 1 association to related views.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| cgpl_project | cgpl_project | left_outer |
| cgpl_text | cgpl_text | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_FMEATask | _FMEATask | $projection.FMEATaskUUID = _FMEATask.FMEATaskUUID |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IFMEASKT | 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 an FMEA Task | view | |
| ObjectModel.representativeKey | FMEATaskUUID | view | |
| ObjectModel.dataCategory | #TEXT | 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 | FMEATaskUUID | |||
| KEY | Language | cgpl_text | langu | |
| FMEATask | cgpl_project | external_id | ||
| FMEATaskDescription | cgpl_text | text1 | ||
| _FMEATask | _FMEATask |
@AbapCatalog.sqlViewName: 'IFMEASKT'
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Text of an FMEA Task'
@ObjectModel.representativeKey: 'FMEATaskUUID'
@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType: { serviceQuality: #B, sizeCategory: #M, dataClass: #TRANSACTIONAL }
define view I_FMEATaskText as select from cgpl_text
left outer join cgpl_project
on cgpl_text.guid = cgpl_project.guid
association [0..1] to I_FMEATask as _FMEATask
on $projection.FMEATaskUUID = _FMEATask.FMEATaskUUID
{
key cast( cgpl_text.guid as plmt_fmea_node_guid preserving type ) as FMEATaskUUID,
@Semantics.language: true
key cgpl_text.langu as Language,
cgpl_project.external_id as FMEATask,
cgpl_text.text1 as FMEATaskDescription,
// Make association public
_FMEATask
}
where cgpl_project.object_type = 'COR'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"CGPL_PROJECT",
"CGPL_TEXT"
],
"ASSOCIATED":
[
"I_FMEATASK"
],
"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