I_DefectCausedBy
Defect Caused By
I_DefectCausedBy is a Basic CDS View that provides data about "Defect Caused By" in SAP S/4HANA. It reads from 1 data source (tqdefcausedby) and exposes 2 fields with key field DefectCausedBy. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tqdefcausedby | tqdefcausedby | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..*] | I_DefectCausedByText | _DefectCausedByText | $projection.DefectCausedBy = _DefectCausedByText.DefectCausedBy |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IDEFECTCAUSEDBY | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Defect Caused By | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.representativeKey | DefectCausedBy | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | DefectCausedBy | defectcausedby | ||
| _DefectCausedByText | _DefectCausedByText |
@AbapCatalog.sqlViewName: 'IDEFECTCAUSEDBY'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Defect Caused By'
@VDM.viewType: #BASIC
@ObjectModel: {
usageType: {
dataClass: #CUSTOMIZING,
sizeCategory: #S,
serviceQuality: #A
},
representativeKey: 'DefectCausedBy',
resultSet.sizeCategory: #XS
}
define view I_DefectCausedBy as select from tqdefcausedby
association [1..*] to I_DefectCausedByText as _DefectCausedByText on $projection.DefectCausedBy = _DefectCausedByText.DefectCausedBy
{
@ObjectModel.text.association: '_DefectCausedByText'
key defectcausedby as DefectCausedBy,
/* Associations */
_DefectCausedByText
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TQDEFCAUSEDBY"
],
"ASSOCIATED":
[
"I_DEFECTCAUSEDBYTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"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