I_FMEATypeObjectType

DDL: I_FMEATYPEOBJECTTYPE SQL: IFMEATYPEOT Type: view BASIC

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.

Data Sources (1)

SourceAliasJoin Type
plmc_audit_obj plmc_audit_obj from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_FMEATypeObjectTypeText _Text $projection.FMEAType = _Text.FMEAType and $projection.FMEATypeObjectType = _Text.FMEATypeObjectType

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IFMEATYPEOT 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 Object Type of FMEA Type view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY FMEAType plmc_audit_obj audit_type
KEY FMEATypeObjectType plmc_audit_obj object_type
BusinessObjectType plmc_audit_obj swo_objtyp
_Text _Text
@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
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"PLMC_AUDIT_OBJ"
],
"ASSOCIATED":
[
"I_FMEATYPEOBJECTTYPETEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/