I_MFGORDDEFECTDECISION
Interface view for defect decisions
I_MFGORDDEFECTDECISION is a CDS View in S/4HANA. Interface view for defect decisions. 2 CDS views read from this table.
CDS Views using this table (2)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| C_MfgExecDefectRecord | view | left_outer | CONSUMPTION | View with UI attributes for defect |
| C_SFIMfgDefectDcsnScrap | view | inner | CONSUMPTION | View for SFI with decision Scrap |
@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
}