I_FMEATypeObjectTypeText

DDL: I_FMEATYPEOBJECTTYPETEXT SQL: IFMEATYPEOTT Type: view BASIC

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)

SourceAliasJoin Type
plmc_audit_objt plmc_audit_objt from

Associations (2)

CardinalityTargetAliasCondition
[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)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"PLMC_AUDIT_OBJT"
],
"ASSOCIATED":
[
"I_FMEATYPEOBJECTTYPE",
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/