C_MfgActionReasonCode

DDL: C_MFGACTIONREASONCODE SQL: CMPERC Type: view CONSUMPTION

C_MfgActionReasonCode is a Consumption CDS View in SAP S/4HANA. It reads from 1 data source (I_MfgActionReasonCode) and exposes 4 fields with key fields MfgActionReasonCodeGroupCtlg, MfgActionReasonCodeGroup, ManufacturingActionReasonCode. 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_MfgActionReasonCode I_MfgActionReasonCode from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName CMPERC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.viewType #CONSUMPTION view
AbapCatalog.compiler.compareFilter true 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 (4)

KeyFieldSource TableSource FieldDescription
KEY MfgActionReasonCodeGroupCtlg MfgActionReasonCodeGroupCtlg
KEY MfgActionReasonCodeGroup MfgActionReasonCodeGroup
KEY ManufacturingActionReasonCode ManufacturingActionReasonCode
MfgActionReasonCodeName
@AbapCatalog.sqlViewName: 'CMPERC'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: {serviceQuality: #B, sizeCategory: #S, dataClass: #CUSTOMIZING}
@VDM.viewType: #CONSUMPTION
@AbapCatalog.compiler.compareFilter: true

define view C_MfgActionReasonCode
  as select from I_MfgActionReasonCode
{
      @UI.hidden: true
  key MfgActionReasonCodeGroupCtlg,

      @UI.identification.position: 10
      @UI.statusInfo.position: 10
      @UI.lineItem.position: 10
      @UI.selectionField.position: 10
      @UI.fieldGroup.position: 10
  key MfgActionReasonCodeGroup,

      @UI.identification.position: 20
      @UI.statusInfo.position: 20
      @UI.lineItem.position: 20
      @UI.selectionField.position: 20
      @UI.fieldGroup.position: 20
      @ObjectModel.text.element: 'MfgActionReasonCodeName'
//      @ObjectModel.foreignKey.association: '_MfgActionReasonCode'

  key ManufacturingActionReasonCode,

      @UI.hidden: true
      _Text[1: Language=$session.system_language].MfgActionReasonCodeName

//      @UI.identification.position: 20

//      @UI.statusInfo.position: 20

//      @UI.lineItem.position: 20

//      @UI.selectionField.position: 20

//      @UI.fieldGroup.position: 20

//      @ObjectModel.foreignKey.association: '_MfgActionReasonCodeCategory'

//      @ObjectModel.text.element: 'MfgActionReasonCodeCatName'

//      _MfgActionReasonCode.MfgActionReasonCodeCategory,

//

//      _MfgActionReasonCode,

//      _MfgActionReasonCodeGroup

};