I_FMEATypeObjectTypeText
Text of Object Type in FMEA Type
I_FMEATypeObjectTypeText is a Basic CDS View that provides data about "Text of Object Type in FMEA Type" in SAP S/4HANA. It reads from 1 data source (plmc_audit_objt) and exposes 6 fields with key fields FMEAType, Language, FMEATypeObjectType. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| plmc_audit_objt | plmc_audit_objt | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_FMEATypeObjectType | _FMEATypeObjectType | $projection.FMEAType = _FMEATypeObjectType.FMEAType and $projection.FMEATypeObjectType = _FMEATypeObjectType.FMEATypeObjectType |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IFMEATYPEOTT | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Text of Object Type in FMEA Type | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | FMEATypeObjectType | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | FMEAType | plmc_audit_objt | audit_type | |
| KEY | Language | plmc_audit_objt | langu | |
| KEY | FMEATypeObjectType | plmc_audit_objt | object_type | |
| FMEATypeObjectTypeDescription | plmc_audit_objt | auditobject_text | ||
| _FMEATypeObjectType | _FMEATypeObjectType | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'IFMEATYPEOTT'
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Text of Object Type in FMEA Type'
@ObjectModel.usageType: { serviceQuality: #A, sizeCategory: #S, dataClass: #CUSTOMIZING }
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'FMEATypeObjectType'
define view I_FMEATypeObjectTypeText as select from plmc_audit_objt
association [0..1] to I_FMEATypeObjectType as _FMEATypeObjectType
on $projection.FMEAType = _FMEATypeObjectType.FMEAType
and $projection.FMEATypeObjectType = _FMEATypeObjectType.FMEATypeObjectType
association [0..1] to I_Language as _Language
on $projection.Language = _Language.Language
{
key plmc_audit_objt.audit_type as FMEAType,
@Semantics.language: true
key plmc_audit_objt.langu as Language,
key plmc_audit_objt.object_type as FMEATypeObjectType,
@Semantics.text: true
plmc_audit_objt.auditobject_text as FMEATypeObjectTypeDescription,
//Association
_FMEATypeObjectType,
_Language
}
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