C_MfgActionReasonCode

DDL: C_MFGACTIONREASONCODE SQL: CMPERC Type: view CONSUMPTION Package: MPE_EXEC_COMMON

Shop Floor Item At Operation Activity

C_MfgActionReasonCode is a Consumption CDS View that provides data about "Shop Floor Item At Operation Activity" 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). Part of development package MPE_EXEC_COMMON.

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

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

};