C_ManufacturingActionSetting

DDL: C_MANUFACTURINGACTIONSETTING SQL: CMPEACTIONSET Type: view CONSUMPTION

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). It is used in 1 Fiori application: Process Serial Number Groups.

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

Fiori Apps (1)

App IDApp NameTypeDescription
F6773 Process Serial Number Groups Transactional S/4HANA Manufacturing Production Engineering and Operations (PEO) 2022 FPS0 release offers a new functionality to collectively process any number of serial numbers as a group at an operation activity. The Process Serial Number Groups app allows production operators to create an maintain a group of serial numbers to be processed at an operation activity, execute SAS and some of the non-SAS actions (i.e. Start, Labor On, Complete, Pause, etc.) once for the complete group, view non-traceable components, PRTs and documents assigned to an operation activity as well as keep the activity log recorded for each serial number individually.

Process Serial Number Groups

Business Role: Production Operator - Discrete Manufacturing (Extended Production Operations)

With this app, you can collectively process any number of serial numbers as a group at an operation activity in the segment type Produce. This allows you, for example, to work on standardized serialized products that often need to undergo the same fabrication process. You perform the actions once for the serial number group and the system records the data individually for each serial number in that group. You access this app by executing a serial number group from the My Work Queue app.

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

}