I_FMEATYPE
Type of an FMEA
I_FMEATYPE is a CDS View in S/4HANA. Type of an FMEA. It contains 1 fields. 2 CDS views read from this table.
CDS Views using this table (2)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| I_FailureModeEffectAnalysis | view | inner | BASIC | Failure Mode and Effects Analysis |
| I_FMEATypeStdVH | view | from | COMPOSITE | FMEA Type Value Help |
Fields (1)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| KEY | FMEAType | FMEAType | 1 |
@AbapCatalog.sqlViewName: 'IFMEATYPE'
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Type of an FMEA'
@ObjectModel.usageType: { serviceQuality: #A, sizeCategory: #S, dataClass: #CUSTOMIZING }
define view I_FMEAType as select from plmc_audit_type
association [0..*] to I_FMEATypeText as _Text on $projection.FMEAType = _Text.FMEAType
association [0..*] to I_FMEATypeObjectType as _FMEATypeObjectType
on $projection.FMEAType = _FMEATypeObjectType.FMEAType
{
@ObjectModel.text.association: '_Text'
key cast( plmc_audit_type.audit_type as plmt_tv_fmea_type preserving type ) as FMEAType,
//Association
_Text,
_FMEATypeObjectType
}
where assessment_cat = '01'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"PLMC_AUDIT_TYPE"
],
"ASSOCIATED":
[
"I_FMEATYPEOBJECTTYPE",
"I_FMEATYPETEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/