I_FMEATypeObjectType
Object Type of FMEA Type
I_FMEATypeObjectType is a Basic CDS View that provides data about "Object Type of FMEA Type" in SAP S/4HANA. It reads from 1 data source (plmc_audit_obj) and exposes 4 fields with key fields FMEAType, FMEATypeObjectType. It has 1 association to related views. Part of development package PLM_FMEA.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| plmc_audit_obj | plmc_audit_obj | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_FMEATypeObjectTypeText | _Text | $projection.FMEAType = _Text.FMEAType and $projection.FMEATypeObjectType = _Text.FMEATypeObjectType |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Object Type of FMEA Type | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | FMEAType | plmc_audit_obj | audit_type | |
| KEY | FMEATypeObjectType | plmc_audit_obj | object_type | |
| BusinessObjectType | plmc_audit_obj | swo_objtyp | ||
| _Text | _Text |
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Object Type of FMEA Type'
@ObjectModel.usageType: { serviceQuality: #A, sizeCategory: #S, dataClass: #CUSTOMIZING }
define view entity I_FMEATypeObjectType as select from plmc_audit_obj
association [0..*] to I_FMEATypeObjectTypeText as _Text
on $projection.FMEAType = _Text.FMEAType
and $projection.FMEATypeObjectType = _Text.FMEATypeObjectType
{
key plmc_audit_obj.audit_type as FMEAType,
@ObjectModel.text.association: '_Text'
key plmc_audit_obj.object_type as FMEATypeObjectType,
plmc_audit_obj.swo_objtyp as BusinessObjectType,
//Associations
_Text
}
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