I_FMEANODETEXT

CDS View

Text of FMEA Node

I_FMEANODETEXT is a CDS View in S/4HANA. Text of FMEA Node. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_FMEANodeTextTP view_entity from TRANSACTIONAL Text of FMEA Node - TP
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Text of FMEA Node'
@ObjectModel.representativeKey: 'FMEANodeUUID'
@Analytics.technicalName: 'IFMEANODET'
@ObjectModel.usageType: { serviceQuality: #B, sizeCategory: #M, dataClass: #TRANSACTIONAL } 
define view entity I_FMEANodeText as select from cgpl_text
  inner join I_FMEANodeAssignment as _FMEANodeAssignment
    on cgpl_text.guid = _FMEANodeAssignment.FMEANodeUUID
  association [0..1] to I_FMEANode as _FMEANode
    on $projection.FMEANodeUUID = _FMEANode.FMEANodeUUID 
{
  key cast( cgpl_text.guid as plmt_fmea_node_guid preserving type ) as FMEANodeUUID,
  key cgpl_text.langu as Language,
  _FMEANodeAssignment.FMEANode,
  cgpl_text.text1 as FMEANodeDescription,
  // Make association public  

  _FMEANode 
}