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