C_ManufacturingActionSetting

DDL: C_MANUFACTURINGACTIONSETTING SQL: CMPEACTIONSET Type: view CONSUMPTION Package: MPE_CORE

Manufacturing action setting

C_ManufacturingActionSetting is a Consumption CDS View that provides data about "Manufacturing action setting" in SAP S/4HANA. It reads from 1 data source (I_MfgActnSttgWthDummyRecd) and exposes 17 fields with key fields MfgProcgExecAction, MfgObjectType, Plant. It is exposed through 1 OData service (UI_OPACTYSFIGROUP_EXECUTE). Part of development package MPE_CORE.

Data Sources (1)

SourceAliasJoin Type
I_MfgActnSttgWthDummyRecd MfgActnSttg from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName CMPEACTIONSET view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.viewType #CONSUMPTION view
EndUserText.label Manufacturing action setting view

OData Services (1)

ServiceBindingVersionContractRelease
UI_OPACTYSFIGROUP_EXECUTE UI_OPACTYSFIGROUP_EXECUTE V2 C1 NOT_RELEASED

Fields (17)

KeyFieldSource TableSource FieldDescription
KEY MfgProcgExecAction I_MfgActnSttgWthDummyRecd MfgProcgExecAction
KEY MfgObjectType I_MfgActnSttgWthDummyRecd MfgObjectType
KEY Plant I_MfgActnSttgWthDummyRecd Plant
MfgActionNoteRequirement I_MfgActnSttgWthDummyRecd MfgActionNoteRequirement
MfgActionSettingNoteType I_MfgActnSttgWthDummyRecd MfgActionSettingNoteType
MfgActionReasonCodeRequirement I_MfgActnSttgWthDummyRecd MfgActionReasonCodeRequirement
MfgActionSettingReasonCodeType I_MfgActnSttgWthDummyRecd MfgActionSettingReasonCodeType
CertificationCheckIsRequired I_MfgActnSttgWthDummyRecd CertificationCheckIsRequired
MfgActionReasonCodeGroupCtlg I_MfgActnSttgWthDummyRecd MfgActionReasonCodeGroupCtlg
MfgActionReasonCodeGroup I_MfgActnSttgWthDummyRecd MfgActionReasonCodeGroup
LastChangedByUser LastChangedByUser
LastChangeDateTime LastChangeDateTime
_MfgActionNoteRequirement _MfgActionNoteRequirement
_MfgActionReasonCodeGroup _MfgActionReasonCodeGroup
_MfgActionReasonCodeRqmt _MfgActionReasonCodeRqmt
_MfgActionSettingNoteType _MfgActionSettingNoteType
_MfgActionSettingReasonType _MfgActionSettingReasonType
@AbapCatalog.sqlViewName: 'CMPEACTIONSET'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AccessControl.personalData.blocking: #BLOCKED_DATA_EXCLUDED
@ObjectModel.usageType: {serviceQuality: #C, sizeCategory: #S, dataClass: #CUSTOMIZING}
@VDM.viewType: #CONSUMPTION
@EndUserText.label: 'Manufacturing action setting'
define view C_ManufacturingActionSetting
  as select from I_MfgActnSttgWthDummyRecd as MfgActnSttg
{
  key MfgActnSttg.MfgProcgExecAction,
  key MfgActnSttg.MfgObjectType,
  key MfgActnSttg.Plant,
      MfgActnSttg.MfgActionNoteRequirement,
      MfgActnSttg.MfgActionSettingNoteType,
      MfgActnSttg.MfgActionReasonCodeRequirement,
      MfgActnSttg.MfgActionSettingReasonCodeType,
      MfgActnSttg.CertificationCheckIsRequired,
      MfgActnSttg.MfgActionReasonCodeGroupCtlg,
      MfgActnSttg.MfgActionReasonCodeGroup,
      LastChangedByUser,
      LastChangeDateTime,
      /* Associations */
      _MfgActionNoteRequirement,
      _MfgActionReasonCodeGroup,
      _MfgActionReasonCodeRqmt,
      _MfgActionSettingNoteType,
      _MfgActionSettingReasonType

}