C_DefectMngDefectsForTransfer
Defects for Transfer
C_DefectMngDefectsForTransfer is a Consumption CDS View that provides data about "Defects for Transfer" in SAP S/4HANA. It reads from 1 data source (I_Defect_TP) and exposes 13 fields with key field DefectInternalID. Part of development package ODATA_QM_DEFECT.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_Defect_TP | I_Defect_TP | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CDEFECTMNGDFT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AccessControl.personalData.blocking | #REQUIRED | view | |
| EndUserText.label | Defects for Transfer | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #CONSUMPTION | view | |
| ObjectModel.representativeKey | DefectInternalID | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.serviceQuality | #B | view |
Fields (13)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | DefectInternalID | DefectInternalID | ||
| Defect | Defect | |||
| DefectText | DefectText | |||
| DefectCodeGroup | DefectCodeGroup | |||
| DefectCode | DefectCode | |||
| InspectionLot | InspectionLot | |||
| DefectCategory | DefectCategory | |||
| Plant | Plant | |||
| MainWorkCenter | MainWorkCenter | |||
| MainWorkCenterPlant | MainWorkCenterPlant | |||
| _InspectionLot | _InspectionLot | |||
| _DefectCodeGroup | _DefectCodeGroup | |||
| _DefectCode | _DefectCode |
@AbapCatalog.sqlViewName: 'CDEFECTMNGDFT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking: #REQUIRED
@EndUserText.label: 'Defects for Transfer'
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #CONSUMPTION
@ObjectModel.representativeKey: 'DefectInternalID'
@ObjectModel.usageType: {
dataClass: #TRANSACTIONAL,
sizeCategory: #L,
serviceQuality: #B
}
define view C_DefectMngDefectsForTransfer as select from I_Defect_TP {
//I_Defect_TP
@UI.hidden: true
key DefectInternalID,
@UI: {
lineItem: [{ position: '10' }]
}
Defect,
DefectText,
@UI: {
lineItem: [{ position: '20' }]
}
DefectCodeGroup,
@UI: {
lineItem: [{ position: '30' }]
}
DefectCode,
@Consumption.hidden: true
InspectionLot,
@Consumption.hidden: true
DefectCategory,
@Consumption.hidden: true
Plant,
@Consumption.hidden: true
MainWorkCenter,
@Consumption.hidden: true
MainWorkCenterPlant,
/* Associations */
@Consumption.hidden: true
_InspectionLot,
_DefectCodeGroup,
_DefectCode
}
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