I_MfgOrdDefectDecision
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.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| mpe_nc_dcsn | mpe_nc_dcsn | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_Notification | _Notification | $projection.Notification = _Notification.Notification |
| [1..1] | I_MfgDefectDecision | _DefectDecisionVH | $projection.MfgDefectDecision = _DefectDecisionVH.MfgDefectDecision |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"MPE_NC_DCSN"
],
"ASSOCIATED":
[
"I_MFGDEFECTDECISION",
"I_NOTIFICATION"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA