I_FMEATYPEOBJECTTYPE

CDS View

Object Type of FMEA Type

I_FMEATYPEOBJECTTYPE is a CDS View in S/4HANA. Object Type of FMEA Type. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_FMEAObjectAggregate view left_outer COMPOSITE Aggregation on FMEA Object Level
@AbapCatalog.sqlViewName: 'IFMEATYPEOT'
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Object Type of FMEA Type'
@ObjectModel.usageType: { serviceQuality: #A, sizeCategory: #S, dataClass: #CUSTOMIZING }
define view 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
}