I_MfgOrdDefectDecision

DDL: I_MFGORDDEFECTDECISION SQL: IMFGORDDEFDCSN Type: view BASIC Package: MPE_EXEC_NON_CONFORMANCE

Interface view for defect decisions

I_MfgOrdDefectDecision is a Basic CDS View that provides data about "Interface view for defect decisions" in SAP S/4HANA. It reads from 1 data source (mpe_nc_dcsn) and exposes 5 fields with key fields Notification, NotificationItem. It has 2 associations to related views. Part of development package MPE_EXEC_NON_CONFORMANCE.

Data Sources (1)

SourceAliasJoin Type
mpe_nc_dcsn mpe_nc_dcsn from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_Notification _Notification $projection.Notification = _Notification.Notification
[1..1] I_MfgDefectDecision _DefectDecisionVH $projection.MfgDefectDecision = _DefectDecisionVH.MfgDefectDecision

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName IMFGORDDEFDCSN view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Interface view for defect decisions view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Notification defectid
KEY NotificationItem itemnumber
MfgDefectDecision defectdecision
_Notification _Notification
_DefectDecisionVH _DefectDecisionVH
@AbapCatalog.sqlViewName: 'IMFGORDDEFDCSN'
@VDM.viewType: #BASIC
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Interface view for defect decisions'
define view I_MfgOrdDefectDecision
  as select from mpe_nc_dcsn
  association [1..1] to I_Notification      as _Notification   on $projection.Notification = _Notification.Notification
  association [1..1] to I_MfgDefectDecision as _DefectDecisionVH on $projection.MfgDefectDecision = _DefectDecisionVH.MfgDefectDecision
{
      @ObjectModel.foreignKey.association: '_Notification'
  key defectid       as Notification,
  key itemnumber     as NotificationItem,
  
      @ObjectModel.foreignKey.association: '_DefectDecisionVH'
      @UI.textArrangement: #TEXT_ONLY
      defectdecision as MfgDefectDecision,

      // Associations

      _Notification,
      _DefectDecisionVH
}