I_MfgActionReasonCodeStdVH

DDL: I_MFGACTIONREASONCODESTDVH SQL: IMARC__VH Type: view COMPOSITE Package: MPE_CORE

Reason Code

I_MfgActionReasonCodeStdVH is a Composite CDS View that provides data about "Reason Code" in SAP S/4HANA. It reads from 1 data source (I_MfgActionReasonCode) and exposes 8 fields with key fields MfgActionReasonCodeGroupCtlg, MfgActionReasonCodeGroup, ManufacturingActionReasonCode, Version. Part of development package MPE_CORE.

Data Sources (1)

SourceAliasJoin Type
I_MfgActionReasonCode I_MfgActionReasonCode from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IMARC__VH view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Reason Code view
Search.searchable true view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY MfgActionReasonCodeGroupCtlg MfgActionReasonCodeGroupCtlg
KEY MfgActionReasonCodeGroup MfgActionReasonCodeGroup
KEY ManufacturingActionReasonCode ManufacturingActionReasonCode
KEY Version Version
_Text _Text
CodeGroupStatus CodeGroupStatus
_Catalog _Catalog
_Group _Group
//GENERATED:003:E6ExH29r7kU{s0DkCCqGFG

@AbapCatalog.sqlViewName: 'IMARC__VH'
@AbapCatalog.compiler.compareFilter: true

@VDM.viewType: #COMPOSITE

@ObjectModel.dataCategory: #VALUE_HELP

@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING

@AccessControl.authorizationCheck: #CHECK
@AccessControl.privilegedAssociations: ['_Text']

@ClientHandling.algorithm: #SESSION_VARIABLE

@Metadata.ignorePropagatedAnnotations: true

@EndUserText.label: 'Reason Code'

@Search.searchable: true
define view I_MfgActionReasonCodeStdVH as select from I_MfgActionReasonCode {
  @ObjectModel.foreignKey.association: '_Catalog'
  key MfgActionReasonCodeGroupCtlg,
  @ObjectModel.foreignKey.association: '_Group'
  @Search: {defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8}
  key MfgActionReasonCodeGroup,
  @ObjectModel.text.association: '_Text'
  @Search: {defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8}
  key ManufacturingActionReasonCode,
  key Version,

  _Text,
  @Consumption.hidden: true
  CodeGroupStatus,

  @Consumption.hidden: true
  _Catalog,
  @Consumption.hidden: true
  _Group
}