I_FMEATypeText

DDL: I_FMEATYPETEXT Type: view_entity BASIC Package: PLM_FMEA

FMEA Type - Text

I_FMEATypeText is a Basic CDS View that provides data about "FMEA Type - Text" in SAP S/4HANA. It reads from 1 data source (plmc_audit_typet) and exposes 4 fields with key fields Language, FMEAType. It has 1 association to related views. Part of development package PLM_FMEA.

Data Sources (1)

SourceAliasJoin Type
plmc_audit_typet plmc_audit_typet from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_FMEAType _FMEAType $projection.FMEAType = _FMEAType.FMEAType

Annotations (9)

NameValueLevelField
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label FMEA Type - Text view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.dataCategory #TEXT view
Analytics.technicalName IFMEATYPET view
ObjectModel.representativeKey FMEAType view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language langu
KEY FMEAType audit_type
FMEATypeDescription
_FMEAType _FMEAType
@VDM.viewType:#BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'FMEA Type - Text'
@ObjectModel.usageType: { serviceQuality: #A, sizeCategory: #S, dataClass: #CUSTOMIZING }
@ObjectModel.dataCategory: #TEXT
@Analytics.technicalName: 'IFMEATYPET' 
@ObjectModel.representativeKey: 'FMEAType'
define view entity I_FMEATypeText as select from plmc_audit_typet 
association [0..1] to I_FMEAType as _FMEAType on $projection.FMEAType = _FMEAType.FMEAType
{
  @Semantics.language: true
  key langu as Language,
  key audit_type as FMEAType,  
  @Semantics.text: true
  cast( audit_type_text as plmt_tv_fmea_type_text preserving type ) as FMEATypeDescription,
  
  //Association

  _FMEAType
}