I_MANUFACTURINGACTIONTEXT

CDS View

MPE Action Text

I_MANUFACTURINGACTIONTEXT is a CDS View in S/4HANA. MPE Action Text. It contains 3 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_MfgProcgExecActionText view union_all COMPOSITE Action Text

Fields (3)

KeyField CDS FieldsUsed in Views
KEY Language Language 1
KEY MfgProcgExecAction MfgProcgExecAction 1
MfgProcgExecActionName MfgProcgExecActionName 1
@AbapCatalog.sqlViewName: 'IMPEACTIONT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'MfgProcgExecAction'
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@ObjectModel.usageType:
{
  serviceQuality: #B,
  sizeCategory:   #S,
  dataClass:      #CUSTOMIZING
}
@EndUserText.label: 'MPE Action Text'
define view I_ManufacturingActionText as select from mpe_action_t as act 
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
  @ObjectModel.text.element: 'MfgProcgExecActionName'
  key act.action_name         as MfgProcgExecAction,
      
      @Semantics.language: true
  key act.spras               as  Language,
      
      @Semantics.text: true    
      act.action_description  as  MfgProcgExecActionName,
      
      _Language
}