I_MANUFACTURINGACTION

CDS View

Manufacturing Action

I_MANUFACTURINGACTION is a CDS View in S/4HANA. Manufacturing Action. It contains 7 fields. 4 CDS views read from this table.

CDS Views using this table (4)

ViewTypeJoinVDMDescription
I_MfgProcgExecAction view union_all COMPOSITE Action
P_MfgProcgExecAction view union_all COMPOSITE Shop Floor Order Execution Action
P_SASActionAndMfgAction view from COMPOSITE SAS Action and Manufacturing Action
P_SASActionAndMfgAction view union_all COMPOSITE SAS Action and Manufacturing Action

Fields (7)

KeyField CDS FieldsUsed in Views
KEY MfgObjectType MfgObjectType 1
KEY MfgProcgExecAction MfgProcgExecAction 3
MfgActionIsNoteEnabled MfgActionIsNoteEnabled 1
MfgActionIsReasonCodeEnabled MfgActionIsReasonCodeEnabled 1
MfgActionReasonCodeGroupCtlg MfgActionReasonCodeGroupCtlg 1
MfgActnIsQualifnCheckEnabled MfgActnIsQualifnCheckEnabled 1
MfgActnIsSuppdByActionHandler MfgActnIsSuppdByActionHandler 1
@AbapCatalog.sqlViewName: 'IMPEACTION'
@AbapCatalog.preserveKey:true
@AbapCatalog.compiler.compareFilter:true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: {serviceQuality: #B, sizeCategory: #S, dataClass: #CUSTOMIZING}
@VDM.viewType: #BASIC
@ObjectModel.representativeKey: 'MfgProcgExecAction'
@EndUserText.label: 'Manufacturing Action'
define view I_ManufacturingAction
  as select from mpe_action as act
  association [0..*] to I_ManufacturingActionText as _Text       on $projection.MfgProcgExecAction = _Text.MfgProcgExecAction
  association [1..1] to I_SystemObjectType        as _ObjectType on $projection.MfgObjectType = _ObjectType.MfgObjectType
{
      @ObjectModel.text.association: '_Text'
  key act.action_name          as MfgProcgExecAction,
      @ObjectModel.foreignKey.association: '_ObjectType'
      act.object_type          as MfgObjectType,
      act.supports_ahf         as MfgActnIsSuppdByActionHandler,
      act.supports_qualifn_chk as MfgActnIsQualifnCheckEnabled,
      act.supports_reason_code as MfgActionIsReasonCodeEnabled,
      act.katalogart           as MfgActionReasonCodeGroupCtlg,
      act.supports_note        as MfgActionIsNoteEnabled,

      _ObjectType,
      _Text
}